/* Wrapper Section */
.inquiry-wrapper {
    padding: 60px 20px;
    background: url('../Assets/lr.png') center/cover no-repeat;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    z-index: 0;
}
.inquiry-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left: Contact Card */
.contact-card {
    flex: 1 1 40%;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-card h2 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #1e2a38;
}

.contact-card p {
    color: #444;
    margin-bottom: 25px;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-block i {
    font-size: 28px;
    color: #3b82f6;
}

.icon-links a {
    font-size: 24px;
    color: #3b82f6;
    margin-right: 15px;
    transition: color 0.3s;
}

.icon-links a:hover {
    color: #1d4ed8;
}

/* Right: Message Form */
.message-form-card {
    flex: 1 1 55%;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.message-form-card h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1e2a38;
}

.alert-msg {
    background-color: #e6ffed;
    color: #047857;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #bbf7d0;
}

.input-cluster {
    position: relative;
    margin-bottom: 25px;
}

.input-cluster input,
.input-cluster textarea {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    font-size: 16px;
    background: none;
    resize: none;
}

.input-cluster label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background-color: white;
    padding: 0 5px;
    color: #888;
    transition: 0.2s ease all;
    pointer-events: none;
}

.input-cluster input:focus + label,
.input-cluster input:not(:placeholder-shown) + label,
.input-cluster textarea:focus + label,
.input-cluster textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 8px;
    font-size: 12px;
    color: #3b82f6;
}

.submit-action-btn {
    background-color: #3b82f6;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.submit-action-btn:hover {
    background-color: #2563eb;
}

/* Google Map */
.location-mapbox {
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .inquiry-layout {
        flex-direction: column;
    }
}

  

