@charset "utf-8";


.page-header {
    background: transparent !important;
    box-shadow: none !important;
}


/* Contact Form Styling */
.contact-form-section {
    padding: 30px 0;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    font-size: 20px;
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #212427;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    transition: border-color 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #f40000;   /* Matches your red theme */
}

.submit-btn {
    background-color: #f40000;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #008000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 0, 0, 0.3);
}

/* Page Header adjustment */
.page-header {
    text-align: center;
    padding: 20px 0 20px;   /* Extra top padding because of fixed header */
    background: #f0f0f0;
}



/* Modal Overlay */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 20000; /* Higher than your header */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px); /* Modern blur effect */
}

/* Modal Box */
.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 30px;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.modal-icon { font-size: 50px; display: block; margin-bottom: 10px; }

.email-highlight {
    font-size: 20px;
    font-weight: 700;
    color: #f40000;
    margin: 20px 0;
    padding: 10px;
    background: #fef0f0;
    border-radius: 8px;
    word-break: break-all;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.confirm { background: #212427; color: white; }
.confirm:hover { background: #32cd32; } /* Turns green on hover */

.edit { background: #ddd; color: #333; }
.edit:hover { background: #bbb; }



.required-star {
    color: #f40000; /* Matches your theme red */
    margin-left: 2px;
    font-size: 1.1em;
    font-weight: bold;
}

/* Optional: Add a small note at the top or bottom of the form */
.form-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}



.form-note {
    font-size: 16px;
    color: #666;   /* Muted grey so it's readable but secondary */
    margin-bottom: 25px;   /* Creates a nice gap before the first name field */
    border-bottom: 1px solid #eee;   /* Optional: adds a very faint line under the note */
    padding-bottom: 10px;
}


input[type="hidden"] {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}



.success-border {
    border-top: 8px solid #008000;
}

