/* Booking Inquiry Form */
.inquiry-shell {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.inquiry-side {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    height: 100%;
    padding: 46px 34px;
    background: linear-gradient(160deg, #020617 0%, #064e3b 55%, #16a34a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.inquiry-side::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 180px;
    height: 180px;
    background: rgba(134, 239, 172, 0.18);
    border-radius: 50%;
}

.inquiry-side > * {
    position: relative;
    z-index: 2;
}

.inquiry-side .header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
    text-decoration: none;
}

.inquiry-side .header-logo img,
.inquiry-side .footer-logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.inquiry-side .brand-subtitle,
.inquiry-side small {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 28px;
}

.inquiry-side h3 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.inquiry-side p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 330px;
    margin: 0 auto 28px;
}

.inquiry-side ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 330px;
    text-align: left;
}

.inquiry-side ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.5;
}

.inquiry-side ul li:last-child {
    margin-bottom: 0;
}

.inquiry-side ul li i {
    color: #86efac;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.form-panel {
    padding: 40px;
    background: #ffffff;
}

.form-panel h3 {
    color: #020617;
    font-weight: 700;
}

.form-label {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    height: 52px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    color: #0f172a;
    font-size: 15px;
    padding: 12px 14px;
    box-shadow: none;
}

textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

.form-control:focus,
.form-select:focus {
    border-color: #16a34a;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
}

.form-control::placeholder {
    color: #94a3b8;
}

.btn-primary {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border: none;
    border-radius: 14px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(22, 163, 74, 0.3);
    transition: all 0.25s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #15803d, #16a34a);
    transform: translateY(-1px);
}

.section-header-four h2 span {
    color: #16a34a;
}

#returnDateBox {
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .inquiry-side {
        padding: 34px 24px;
        justify-content: flex-start;
    }

    .form-panel {
        padding: 32px 24px;
    }
}

@media (max-width: 575px) {
    .inquiry-shell {
        border-radius: 18px;
    }

    .inquiry-side {
        padding: 28px 18px;
    }

    .inquiry-side .header-logo img,
    .inquiry-side .footer-logo {
        max-width: 165px;
    }

    .inquiry-side h3 {
        font-size: 26px;
    }

    .form-panel {
        padding: 24px 18px;
    }

    .form-control,
    .form-select {
        height: 48px;
        font-size: 14px;
    }

    .btn-primary {
        width: 100%;
    }
}