.enquire {
    padding-top: 40px;
    background-image: url(../images/bg-all-img.png);
    border-top: 1px solid #eef2f7;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment:fixed;
}
/* Central Form Card */
.form-card {
    background: #ffffff;
    border-radius: 5px;
    padding: 21px;
    box-shadow: 1px 0px 13px 2px rgb(15 23 42 / 15%), 0 0 0 1px rgba(226, 232, 240, 0.8);
    margin: 40px auto;
    max-width: 60%;
}

.form-card-header {
    text-align: center;
    margin-bottom: 32px;
}

    .form-card-header h2 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
    }

.inp {
    width: 100%;
    /* background: #f7f9ff; */
    border: 1px solid #e3e9f5;
    border-radius: 5px;
    padding: 8px 10px;
    font-size: 13px;
    outline: none;
    transition: 0.3s;
    color: #9aa8c3;
}

    .inp::placeholder {
        color: #9aa8c3;
        font-size: 12px
    }

    .inp:focus {
        border-color: #00c2b2;
        box-shadow: 0 0 0 3px rgba(0,194,178,0.12);
        background: #fff
    }

.select-wrap {
    position: relative
}

    .select-wrap i {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        color: #6b7a94;
        font-size: 12px
    }

    .select-wrap select {
        appearance: none;
        cursor: pointer
    }



.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-field label {
        font-size: 14px;
        font-weight: 600;
        color: #334155;
        text-align: left;
    }

    .form-field input,
    .form-field textarea {
        width: 100%;
        padding: 8px 13px;
        border: 1.5px solid #e2e8f0;
        border-radius: 5px;
        font-size: 13px;
        outline: none;
        background: #ffffff;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }


        .form-field input:focus,
        .form-field textarea:focus {
            border-color: #0284c7;
            box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
        }


.features-section {
    text-align: center;
    padding: 40px 0;
    background: #ffffff;
}



.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 25px 0;
}

.feature-box {
    background: #eef9f8;
    padding: 14px 12px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease;
}

    .feature-box:hover {
        transform: translateY(-3px);
    }

.feature-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ffffff;
    color: #0f7f83;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 11px;
    color: #6b7a94;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    cursor: pointer;
}

    .check input {
        width: 16px;
        height: 16px;
        accent-color: #128286;
        margin-top: 2px;
        flex-shrink: 0
    }

.feature-box h4 {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.feature-box p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {


    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-card {
        padding: 24px;
    }
}
