/* ==========================================================================
   Base Styles & Typography
   ========================================================================== */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4; /* Light gray background to make the form pop */
    color: #333333;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   Header Styles
   ========================================================================== */
header {
    background-color: #000000; /* Solid Black */
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    letter-spacing: 1px;
}

.header-text {
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* ==========================================================================
   Main Content & Layout
   ========================================================================== */
main {
    padding: 40px 15px;
}

.container {
    max-width: 800px;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Logo & Intro
   ========================================================================== */
.logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    max-width: 280px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    font-size: 1.25rem;
    color: #666666; /* 40% Gray */
    margin-bottom: 40px;
    font-weight: 700;
}

/* ==========================================================================
   Form Elements
   ========================================================================== */
label {
    color: #666666; /* 40% Gray */
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

label span {
    color: #000000; /* Black asterisk for required fields */
    margin-left: 4px;
    font-size: 1.1rem;
}

/* Focus states for input fields to match branding */
.form-control:focus, 
.form-select:focus {
    border-color: #666666;
    box-shadow: 0 0 0 0.25rem rgba(102, 102, 102, 0.25);
}

textarea {
    resize: vertical;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.submit-btn {
    background-color: #000000; /* Solid Black */
    color: #ffffff;
    padding: 14px;
    font-size: 1.1rem;
    border: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.submit-btn:hover, 
.submit-btn:focus, 
.submit-btn:active {
    background-color: #666666 !important; /* 40% Gray on hover */
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.submit-btn:disabled {
    background-color: #cccccc !important;
    cursor: not-allowed;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */
footer {
    background-color: #000000; /* Solid Black */
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
}

.phone-number {
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.copyright {
    font-size: 0.9rem;
    color: #666666; /* 40% Gray */
    text-transform: uppercase;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    label {
        margin-bottom: 5px;
    }
    
    .row.mb-3 {
        margin-bottom: 1.5rem !important;
    }
}