body, html {
    margin: 0;
    padding: 0;
    background: var(--light-gray);
}

/* ================= HERO ================= */
#disabilities-container.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;

    background: url('/images/veteran.jpg') center 30% / cover no-repeat;
}

/* overlay */
#disabilities-container.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 60, 0.75);
}

/* content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 20px;
    color: white;
}

/* title */
.hero-content h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 3.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: white;
    line-height: 1.05;
}

.hero-content h1 span {
    display: block;
    color: #f4b400;
    font-weight: 700;
}

/* subtitle */
.hero-content p {
    margin-top: 15px;
    font-size: 1.3rem;
    color: #dbe3f1;
}

/* CTA */
.start-calculator-btn {
    margin-top: 25px;
    background: #c62828;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.25s;
}

.start-calculator-btn:hover {
    background: #a61b1b;
    transform: translateY(-2px);
}

.start-calculator-btn i {
  margin-right: 12px;
}

/* ================= HEADER ================= */
.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    background: transparent;
}

/* hide desktop nav links */
.main-header nav,
.main-header a {
    display: none !important;
}

/* hamburger visible */
.hamburger {
    display: block;
    color: white;
    font-size: 1.8rem;
    background: none;
    border: none;
}

/* ================= CONTACT ================= */
#contact {
    padding: 20px 20px 60px 20px !important;
    background: #f4f6f9;
    
}

.contact-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.3rem; 
  margin: 0 0 30px 0;
}

.center-content { 
    max-width: 700px; 
    margin: 0 auto; 
    padding: 30px; 
    background: white; 
    border-radius: 12px; 
    box-shadow: 0 12px 30px rgba(0,0,0,0.08); 
}


#contact-us {
  text-align: center;
  padding: 1rem 1rem 0.5rem 1rem;
  border-radius: 12px;
  color: #16264D;
  font-size: 40px; 
  margin: 0px;
}

/* alerts */
.contact-alert {
    margin: 10px 0;
    text-align: center;
}

#contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;       /* center everything horizontally */
    width: 100%;
    max-width: 700px;          /* match your .center-content */
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* ROW OF INPUTS (Name, Email, Phone) */
#contact-form .row {
    display: flex;
    gap: 15px;                 /* equal gap between inputs */
    width: 100%;
    margin-bottom: 20px;
}

/* EACH FORM GROUP IN ROW */
#contact-form .row .form-group {
    flex: 1;                   
    display: flex;
    flex-direction: column;
}

/* INPUTS */
#contact-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    box-sizing: border-box;
    background-color: #f9fafb;
}

#contact-form .full-width {
    width: 700px;              /* match send button width */
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;   /* align label and textarea left */
}
#contact-form .full-width textarea {
    width: 100%;               /* fill the .full-width container */
    padding: 0 12px 12px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    box-sizing: border-box;
    background-color: #f9fafb;
}
#contact-form .full-width textarea {
    margin: 0;             /* remove any default margin */
}

#contact-form .full-width label {
    align-self: flex-start;
    margin-bottom: 0px;
    color: #555;
}

#contact-form .form-group label {
    margin-bottom: 5px;
    font-size: 0.85rem;
    color: #222;          /* darker than before */
    font-weight: 600;     /* semi-bold */
}

/* button */
#send-button {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    background: #16264D;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

#send-button:hover {
    background: #16213d;
}

#send-button i {
  margin-right: 12px;
}
/* ================= MOBILE ================= */
@media (max-width: 768px) {

    #disabilities-container.hero {
        height: auto;
        padding: 80px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .row {
        flex-direction: column;
    }

    #contact-us {
        font-size: 2rem;
    }
}
