/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   LANDING PAGE STYLES (registration.html)
   ============================================ */
body.landing-page {
    background: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Logo stays in white area */
.logo {
    width: 100%;
    padding: 40px 20px 20px;
    text-align: center;
    background: white;
    margin-bottom: 0;
    animation: fadeInDown 0.8s ease-out;
}

.logo img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    animation: pulse 2s ease-in-out infinite;
}

/* Green section wrapper */
.green-section {
    width: 100%;
    background: linear-gradient(135deg, #009966 0%, #00cc88 100%);
    padding: 40px 20px;
    text-align: center;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: white;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.8s ease-out 0.4s both;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.google-btn {
    width: 100%;
    background: linear-gradient(135deg, #4285F4 0%, #357ae8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    margin-bottom: 25px;
}

.google-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.google-btn:active {
    transform: translateY(0);
}

.google-icon {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 4px;
    padding: 2px;
}

.info-text {
    color: #333333;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 25px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #FF9933;
}

.panitia-btn {
    width: 100%;
    background: white;
    color: #009966;
    border: 3px solid #009966;
    border-radius: 12px;
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.panitia-btn:hover {
    background: #009966;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 102, 0.3);
}

.panitia-btn:active {
    transform: translateY(0);
}

.user-icon {
    width: 24px;
    height: 24px;
}

/* ============================================
   FORM PAGE STYLES (registration-form.html)
   ============================================ */
body.form-page {
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-header img {
    height: 50px;
    width: auto;
}

.header-title {
    color: #333333;
    font-size: 1.15rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #333333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #009966;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #009966;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.logout-btn {
    background: #d32f2f;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.logout-icon {
    width: 20px;
    height: 20px;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
}

.form-container {
    width: 100%;
    max-width: 600px;
    animation: fadeInUp 0.6s ease-out;
}

/* Info Banner */
.info-banner {
    background: linear-gradient(135deg, #FFB84D 0%, #FF9933 100%);
    color: #333333;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.2);
    animation: slideInRight 0.6s ease-out 0.2s both;
}

.info-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-banner p {
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Registration Form */
.registration-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    color: #333333;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-input:focus {
    outline: none;
    border-color: #009966;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 153, 102, 0.1);
}

.form-input::placeholder {
    color: #999;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #00bfa5 0%, #009966 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 30px;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 102, 0.3);
}

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

.cancel-btn {
    width: 100%;
    background: white;
    color: #757575;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px 30px;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    font-family: 'Poppins', sans-serif;
}

.cancel-btn:hover {
    background: #f5f5f5;
    border-color: #757575;
    color: #424242;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cancel-btn:active {
    transform: translateY(0);
}

.arrow-icon {
    width: 22px;
    height: 22px;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.4);
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 1s both;
}

.chat-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.5);
}

.chat-widget svg {
    width: 30px;
    height: 30px;
}

/* Footer */
.footer {
    background: #009966;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

body.landing-page .footer {
    margin-top: 30px;
    background: transparent;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-out 1s both;
}

/* ============================================
   STUDENT TYPE PAGE STYLES (student-type.html)
   ============================================ */
.student-type-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.student-data-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Progress Section */
.progress-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px 40px;
    margin-bottom: 40px;
    animation: fadeInDown 0.6s ease-out;
}

.progress-header {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #FFB84D 0%, #FF9933 100%);
    padding: 20px 25px;
    border-radius: 12px;
    margin: -30px -40px 30px;
    position: relative;
}

.download-icon {
    width: 28px;
    height: 28px;
}

.progress-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    flex: 1;
}

.close-btn {
    background: #d32f2f;
    border: none;
    border-radius: 6px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: #b71c1c;
    transform: scale(1.05);
}

.close-btn svg {
    width: 20px;
    height: 20px;
}

/* Progress Stepper */
.stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.step {
    display: flex;
    align-items: center;
    flex: 1;
}

.step:last-child {
    flex: 0;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background: #009966;
    border-color: #009966;
}

.step.completed .step-circle {
    background: #009966;
    border-color: #009966;
}

.step-circle svg {
    width: 24px;
    height: 24px;
    display: none;
}

.step.active .step-circle svg,
.step.completed .step-circle svg {
    display: block;
}

.step-line {
    flex: 1;
    height: 3px;
    background: #e0e0e0;
    margin: 0 -3px;
    transition: all 0.3s ease;
}

.step.completed .step-line {
    background: #009966;
}

/* Selection Section */
.selection-section {
    text-align: center;
    padding: 20px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.selection-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 50px;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.selection-card {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.selection-card:hover {
    border-color: #009966;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 153, 102, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 153, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.selection-card:hover .card-icon {
    background: rgba(0, 153, 102, 0.2);
    transform: scale(1.1);
}

.card-icon svg {
    width: 40px;
    height: 40px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   STUDENT DATA FORM PAGE STYLES (student-data.html)
   ============================================ */

/* 4 Steps Stepper */
.stepper-4 {
    max-width: 800px;
    margin: 0 auto;
}

/* Form Section White Background */
.form-section-white {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-top: 30px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.form-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 35px;
    text-align: left;
}

/* Student Data Form */
.student-data-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

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

.form-group-full {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.char-count {
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: 0.85rem;
    color: #666;
}

.form-label {
    display: block;
    color: #333333;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.required {
    color: #d32f2f;
    margin-left: 2px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-input:focus {
    outline: none;
    border-color: #009966;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 153, 102, 0.1);
}

.form-input:read-only {
    background: #e9ecef;
    cursor: not-allowed;
}

.form-input.invalid {
    border-color: #d32f2f;
    animation: shake 0.3s ease;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23333' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 24px;
}

.form-input::placeholder {
    color: #999;
}

/* Field Tooltip */
.field-tooltip {
    position: absolute;
    top: -35px;
    left: 0;
    background: #333333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    animation: fadeIn 0.3s ease;
    z-index: 10;
}

.field-tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333333;
}

.form-group-half {
    position: relative;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.btn-cancel {
    background: white;
    color: #d32f2f;
    border: 2px solid #d32f2f;
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-cancel:hover {
    background: #d32f2f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.btn-cancel svg {
    width: 20px;
    height: 20px;
}

.btn-next {
    background: linear-gradient(135deg, #00bfa5 0%, #009966 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 102, 0.3);
}

.btn-next svg {
    width: 20px;
    height: 20px;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* ============================================
   UPLOAD DOCUMENTS PAGE STYLES (upload-documents.html)
   ============================================ */

.upload-documents-form {
    width: 100%;
}

/* File Upload Wrapper */
.file-upload-wrapper {
    position: relative;
    margin-bottom: 8px;
}

.file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-label {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
    width: 100%;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.file-label:hover {
    border-color: #009966;
}

.file-button {
    background: #d0d0d0;
    color: #333333;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.file-label:hover .file-button {
    background: #c0c0c0;
}

.file-name {
    flex: 1;
    padding: 14px 18px;
    color: #666;
    font-size: 0.95rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-input:focus + .file-label {
    border-color: #009966;
    box-shadow: 0 0 0 3px rgba(0, 153, 102, 0.1);
}

.file-hint {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-top: 5px;
    font-style: italic;
}

/* When file is selected */
.file-input:valid + .file-label .file-name {
    color: #009966;
    font-weight: 500;
}

/* ============================================
   DASHBOARD PAGE STYLES (dashboard.html)
   ============================================ */

body.dashboard-page {
    background: #f5f5f5;
}

.main-content-dashboard {
    flex: 1;
    padding: 30px 20px;
}

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-action {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-user {
    background: linear-gradient(135deg, #FFB84D 0%, #FF9933 100%);
    color: white;
}

.btn-user:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
}

.btn-add-student {
    background: linear-gradient(135deg, #00bfa5 0%, #009966 100%);
    color: white;
}

.btn-add-student:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 153, 102, 0.3);
}

.btn-action svg {
    width: 20px;
    height: 20px;
}

/* Dashboard Content */
.dashboard-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
}

/* Student Info Card */
.student-info-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.student-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.student-avatar {
    width: 80px;
    height: 80px;
    background: rgba(0, 153, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.student-avatar svg {
    width: 45px;
    height: 45px;
}

.student-id-info h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 5px;
}

.student-id-info p {
    font-size: 0.95rem;
    color: #666;
}

.btn-edit-data {
    width: 100%;
    background: #00bcd4;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.btn-edit-data:hover {
    background: #0097a7;
    transform: translateY(-2px);
}

.btn-edit-data svg {
    width: 18px;
    height: 18px;
}

.student-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-item svg {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.85rem;
    color: #666;
}

.detail-value {
    font-size: 0.95rem;
    color: #333333;
    font-weight: 600;
}

/* Right Column */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Progress Status Card */
.progress-status-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 25px;
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.status-item.completed {
    background: rgba(0, 200, 83, 0.05);
    border-left: 4px solid #00c853;
}

.status-item.pending {
    background: rgba(211, 47, 47, 0.05);
    border-left: 4px solid #d32f2f;
}

.status-number {
    font-weight: 700;
    color: #333333;
    min-width: 25px;
}

.status-text {
    flex: 1;
    font-size: 0.95rem;
    color: #333333;
}

.status-icon {
    width: 22px;
    height: 22px;
}

/* Payment Info Card */
.payment-info-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.payment-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #009966;
    margin: 15px 0 25px;
}

.payment-instructions {
    font-size: 0.95rem;
    color: #333333;
    margin-bottom: 15px;
}

.account-number {
    font-size: 2rem;
    font-weight: 700;
    color: #333333;
    background: #f5f5f5;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.payment-deadline {
    background: #fff3cd;
    border-left: 4px solid #FF9933;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.payment-deadline p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.payment-deadline h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333333;
}

.payment-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
}

.payment-steps {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.payment-steps h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.5;
}

.payment-steps ol {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-steps li {
    font-size: 0.9rem;
    color: #333333;
    line-height: 1.6;
}

.btn-payment-guide {
    width: 100%;
    background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-payment-guide:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 195, 74, 0.3);
}

/* ============================================
   AGREEMENT PAGE STYLES (agreement.html)
   ============================================ */

.agreement-form {
    width: 100%;
}

.agreement-intro {
    margin-bottom: 30px;
}

.agreement-intro p {
    font-size: 1rem;
    color: #333333;
    font-weight: 500;
}

/* Agreement Item */
.agreement-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 25px;
    margin-bottom: 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.agreement-item:hover {
    border-color: #009966;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.agreement-item.checked {
    background: rgba(0, 153, 102, 0.03);
    border-color: #009966;
}

.agreement-item.highlighted {
    background: #f5f5f5;
}

.agreement-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    color: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.agreement-label {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    position: relative;
}

.agreement-text {
    flex: 1;
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Custom Checkbox */
.agreement-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

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

.agreement-checkbox:checked + .custom-checkbox {
    background: #009966;
    border-color: #009966;
}

.agreement-checkbox:checked + .custom-checkbox::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.agreement-label:hover .custom-checkbox {
    border-color: #009966;
}

/* Submit Button */
.agreement-submit {
    display: flex;
    justify-content: flex-start;
    margin-top: 40px;
}

.btn-save {
    background: linear-gradient(135deg, #00bfa5 0%, #009966 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 102, 0.3);
}

.btn-save svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

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

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Landing Page Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.4rem;
    }

    .card {
        padding: 30px 20px;
    }

    .google-btn,
    .panitia-btn {
        font-size: 1rem;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .logo img {
        width: 120px;
    }
}

/* Form Page Responsive */
@media (max-width: 968px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo-header {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }

    .header-title {
        font-size: 0.95rem;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .logout-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .form-container {
        max-width: 100%;
    }

    .registration-form {
        padding: 30px 25px;
    }

    .info-banner {
        padding: 18px 20px;
    }

    .info-banner p {
        font-size: 0.9rem;
    }

    .chat-widget {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .chat-widget svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .logo-header img {
        height: 38px;
    }

    .header-title {
        font-size: 0.85rem;
    }

    .registration-form {
        padding: 25px 20px;
    }

    .form-input {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}

/* Student Type Page Responsive */
@media (max-width: 768px) {
    .progress-section {
        padding: 20px 20px;
    }

    .progress-header {
        margin: -20px -20px 20px;
        padding: 15px 20px;
    }

    .progress-title {
        font-size: 1.1rem;
    }

    .download-icon {
        width: 24px;
        height: 24px;
    }

    .stepper {
        padding: 0 10px;
    }

    .step-circle {
        width: 40px;
        height: 40px;
    }

    .step-circle svg {
        width: 20px;
        height: 20px;
    }

    .selection-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    .selection-card {
        padding: 30px 25px;
    }

    .card-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .progress-title {
        font-size: 1rem;
    }

    .close-btn {
        padding: 6px;
    }

    .close-btn svg {
        width: 18px;
        height: 18px;
    }

    .step-circle {
        width: 35px;
        height: 35px;
    }

    .step-circle svg {
        width: 18px;
        height: 18px;
    }

    .step-line {
        height: 2px;
    }

    .selection-title {
        font-size: 1.2rem;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .card-icon svg {
        width: 35px;
        height: 35px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-description {
        font-size: 0.9rem;
    }
}

/* Student Data Form Responsive */
@media (max-width: 768px) {
    .form-section-white {
        padding: 30px 25px;
    }

    .form-section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-actions {
        flex-direction: column-reverse;
        gap: 15px;
        margin-top: 30px;
        padding-top: 25px;
    }

    .btn-cancel,
    .btn-next {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .form-section-white {
        padding: 25px 20px;
    }

    .form-section-title {
        font-size: 1.3rem;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-input {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .btn-cancel,
    .btn-next {
        font-size: 0.95rem;
        padding: 12px 20px;
    }

    .file-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .file-name {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .file-hint {
        font-size: 0.8rem;
    }

    .agreement-item {
        padding: 15px 20px;
        gap: 15px;
    }

    .agreement-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .agreement-text {
        font-size: 0.9rem;
    }

    .custom-checkbox {
        width: 22px;
        height: 22px;
    }

    .btn-save {
        width: 100%;
        justify-content: center;
        padding: 14px 32px;
    }
}

@media (max-width: 480px) {
    .agreement-item {
        padding: 12px 15px;
        gap: 12px;
    }

    .agreement-number {
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
    }

    .agreement-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .custom-checkbox {
        width: 20px;
        height: 20px;
    }

    .agreement-checkbox:checked + .custom-checkbox::after {
        top: 2px;
        left: 6px;
        width: 5px;
        height: 10px;
    }

    .btn-save {
        font-size: 0.95rem;
        padding: 12px 28px;
    }
}

/* Dashboard Responsive */
@media (max-width: 968px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-action {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-content-dashboard {
        padding: 20px 15px;
    }

    .student-info-card,
    .progress-status-card,
    .payment-info-card {
        padding: 20px;
    }

    .student-header {
        flex-direction: column;
        text-align: center;
    }

    .student-id-info h2 {
        font-size: 1.4rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .payment-amount {
        font-size: 1.6rem;
    }

    .account-number {
        font-size: 1.6rem;
        padding: 12px 15px;
    }

    .payment-steps {
        padding: 15px;
    }

    .payment-steps ol {
        margin-left: 15px;
    }

    .payment-steps li {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .student-avatar {
        width: 60px;
        height: 60px;
    }

    .student-avatar svg {
        width: 35px;
        height: 35px;
    }

    .student-id-info h2 {
        font-size: 1.2rem;
    }

    .student-id-info p {
        font-size: 0.9rem;
    }

    .detail-label,
    .detail-value {
        font-size: 0.85rem;
    }

    .status-text {
        font-size: 0.85rem;
    }

    .payment-amount {
        font-size: 1.4rem;
    }

    .account-number {
        font-size: 1.3rem;
    }

    .payment-deadline h4 {
        font-size: 1.1rem;
    }
}
