* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #f1f1f1;
    min-height: 100vh;
    padding: 20px;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #800000 0%, #df0000 100%);
    padding: 10px 20px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(128, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo-center img {
    max-height: 40px;
    width: auto;
}


/* Add padding to body to account for sticky header */
body {
    padding-top: 70px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

/* Banner Section */
.banner {
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    line-height: 0;
}


.banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Form Card */
.form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
}

.info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.info-section h2 {
    color: #1a1a2e;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-section p {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.info-section .highlight {
    color: #800000;
    font-weight: 600;
}

/* Flyer Section */
.flyer {
    margin: 20px 0;
    border-radius: 15px;
    overflow: hidden;
    line-height: 0;
}

.flyer img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Bank Info */
.bank-info {
    background: #ffc5c563;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.bank-info h3 {
    color: #1a1a2e;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.bank-info p {
    color: #495057;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.bank-account {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
    flex-wrap: nowrap;
    background: white;
    border: 2px solid #0055A4;
    border-radius: 12px;
    padding: 12px 20px;
}

.bank-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.bank-logo img {
    max-width: 80px;
    height: auto;
    display: block;
}

.account-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    line-height: 1.3;
    align-self: center;
    margin-top: 6px;
}





.bank-account .account-details p {
    color: #0055A4 !important;
}

.account-number {
    margin: 0;
    line-height: 1.2;
    color: #0055A4;
}

.account-name {
    margin: 0;
    color: #0055A4;
    font-size: 0.9rem;
    line-height: 1.2;
}

/* Deadline */
.deadline-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.deadline {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, #800000 0%, #df0000 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.deadline .label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.deadline .date {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 5px;
}

/* Form Fields */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #1a1a2e;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group label .required {
    color: #800000;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #800000;
    background: white;
    box-shadow: 0 0 0 4px rgba(128, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.radio-option {
    flex: 1;
    min-width: 150px;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-option label {
    display: block;
    padding: 15px 25px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.radio-option input[type="radio"]:checked + label {
    border-color: #800000;
    background: linear-gradient(135deg, #800000 0%, #df0000 100%);
    color: white;
}

.radio-option label:hover {
    border-color: #800000;
    transform: translateY(-2px);
}

.file-upload {
    border: 2px dashed #e9ecef;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.file-upload:hover {
    border-color: #800000;
    background: #fff5f6;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload .upload-icon {
    font-size: 3rem;
    color: #800000;
    margin-bottom: 10px;
}

.file-upload p {
    color: #6c757d;
    font-size: 0.9rem;
}

.file-upload .file-name {
    margin-top: 10px;
    color: #800000;
    font-weight: 600;
    font-size: 0.9rem;
}

.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #800000 0%, #df0000 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(128, 0, 0, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(128, 0, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 30px;
    color: rgba(31, 31, 31, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer .copyright-symbol {
    font-size: 1.2rem;
    font-weight: 700;
}


/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* Floating Admin Button (Icon Only - Circle) */
.floating-admin {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #800000 0%, #df0000 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(128, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.floating-admin:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(128, 0, 0, 0.4);
}

/* Admin Icon - White Color and Centered */
.admin-icon {
    filter: brightness(0) invert(1);
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Back Button (Icon Only - Circle) */
.floating-back {

    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #800000 0%, #df0000 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(128, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.floating-back:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(128, 0, 0, 0.4);
}

/* Back Icon - Centered */
.back-icon {
    font-size: 1.3rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {

    body {
        padding: 15px;
        padding-top: 60px; /* Adjust for smaller sticky header on mobile */
    }

    /* Sticky Header Mobile */
    .sticky-header {
        padding: 8px 15px;
    }

    .header-logo-center img {
        max-height: 35px;
    }

    .form-card {
        padding: 25px 20px;
    }

    .info-section {
        padding: 20px 15px;
    }

    .info-section h2 {
        font-size: 1.1rem;
    }

    .info-section p {
        font-size: 0.85rem;
    }

    /* Bank Account - Same as desktop, horizontal layout */
    .bank-account {
        flex-wrap: nowrap;
        padding: 12px 15px;
        gap: 12px;
    }

    .bank-logo img {
        max-width: 60px;
    }

    .account-details {
        margin-top: 8px;
    }

    .account-number {
        font-size: 0.85rem;
    }

    .account-name {
        font-size: 0.8rem;
    }

    /* Deadline - Horizontal */
    .deadline-box {
        flex-direction: row;
        gap: 10px;
    }

    .deadline {
        min-width: unset;
        padding: 12px 8px;
    }

    .deadline .label {
        font-size: 0.7rem;
    }

    .deadline .date {
        font-size: 0.85rem;
    }

    /* Radio Group - Horizontal */
    .radio-group {
        flex-direction: row;
        gap: 10px;
    }

    .radio-option {
        min-width: unset;
        flex: 1;
    }

    .radio-option label {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

}
