/* HERO SECTION */
.customize-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url('assets/squadimg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 10px;
}

.customize-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.customize-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.customize-content h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
}

.navy-highlight {
    color: #0B2F56;
    -webkit-text-stroke: 1px white;
}

/* FORM SECTION */
.custom-request-section {
    padding: 60px 5%;
    background-color: #fdfdfd;
}

.form-wrapper {
    max-width: 850px;
    margin: -50px auto 0; /* Pulls form slightly over the hero for a modern look */
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.form-header { text-align: center; margin-bottom: 30px; }
.form-header h2 { color: #0B2F56; font-size: 2rem; margin-bottom: 10px; }
.form-header p { color: #666; font-size: 1rem; }

.direct-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.contact-btn {
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.wa { background: #25D366; }
.mail { background: #0B2F56; }

/* INPUTS */
.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.9rem;
}

.input-group input, .input-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    background: #f9f9f9;
    width: 100%;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: #0B2F56;
    outline: none;
    background: #fff;
}

/* BUTTON */
.submit-request-btn {
    width: 100%;
    padding: 16px;
    background: #0B2F56;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.submit-request-btn:hover {
    background: #05162b;
    transform: translateY(-2px);
}

/* MOBILE FIXES */
@media (max-width: 768px) {
    .customize-hero { height: 50vh; }
    .form-wrapper { margin-top: -30px; padding: 25px 20px; }
    .input-row { grid-template-columns: 1fr; gap: 0; }
    .direct-contact { flex-direction: column; align-items: center; }
    .contact-btn { width: 100%; justify-content: center; }
    .form-header h2 { font-size: 1.6rem; }
}