/* Hero Header */
.hero-header {
    min-height: 80vh; /* ensures text is always visible */
    background-image: url('/assets/headerbanner.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Optional dark overlay to make text visible */
.hero-header::before {
    content: "";
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.3); /* adjust opacity if needed */
    z-index:1;
}

/* Text Content */
.hero-text {
    position: relative;
    z-index:2;
}
.hero-text h2 {
    color: var(--primaryColor);
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
}
.hero-text p {
    color: var(--black);
    font-size: 22px;
    margin-top: 15px;
}

/* Button */
.ConsultationBtn {
    background-color: var(--primaryColor);
    color: var(--white);
    font-weight: 600;
    border: none;
    outline: none;
    padding: 8px 25px;
    border-radius: 5px;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.37);
    z-index:2;
}
.ConsultationBtn:hover {
    background-color: var(--white);
    color: var(--primaryColor);
    transition: 0.5s ease;
}

/* Enquiry Form Section */
.form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: linear-gradient(to bottom, var(--identity), #ffffff28);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    height: auto;
    flex-direction: column;
    position: relative;
    z-index:2;
}

/* Form Wrapper */
.form-wrapper {
    width: 100%;
    max-width: 450px;
    padding: 15px;
}

/* Form Title */
.form-title {
    font-size: 22px !important;
    font-weight: bold;
    color: var(--primaryColor) !important;
    text-align: center;
    margin-bottom: 15px;
}

/* Input Group Styling */
.input-group {
    margin-bottom: 10px;
}
.input-group label {
    font-size: 13px;
    color: var(--primaryColor);
    margin-bottom: 5px;
    display: block;
}
.input-group .input-field,
.input-group .textarea-field {
    width: 100%;
    padding: 8px;
    font-size: 13px;
    color: #555;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s ease;
}
.input-group .textarea-field {
    min-height: 80px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--primaryColor);
    border: none;
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.submit-btn:hover {
    background-color: var(--secondryColor);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-header h2 { font-size: 50px; }
    .form-wrapper { max-width: 400px; }
}
@media (max-width: 768px) {
    .hero-header h2 { font-size: 40px; }
    .form-wrapper { max-width: 100%; padding: 10px; }
    .form-title { font-size: 18px; }
    .submit-btn { font-size: 13px; padding: 10px; }
}
@media (max-width: 576px) {
    .hero-header h2 { font-size: 32px; }
    .form-title { font-size: 16px; }
    .input-group .input-field, .input-group .textarea-field { font-size: 12px; padding: 6px; }
    .submit-btn { font-size: 12px; padding: 8px; }
}
