/* =========================
   Availability Section
========================= */
.availability-section {
    margin-top: 0px;
    position: relative;
    z-index: 99;
    background-color: #f8f5ef;
}
.availability-box {
    background: #f8f5ef;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

/* Decorative Tiger Strips */
/* Left Tiger Strip */
.availability-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 120px;
    height: 250px;
    background: url("../img/tiger/strip.png") no-repeat left center;
    background-size: contain;
    transform: rotate(-180deg);
    opacity: 0.9;
    z-index: 99;
}
/* Right Tiger Strip */
.availability-section::after {
    content: "";
    position: absolute;
    right: 0;
    top: 1px;
    width: 120px;
    height: 250px;
    background: url("../img/tiger/strip.png") no-repeat right center;
    background-size: contain;
    transform: scaleY(-1);
    opacity: 0.9;
}
.availability-box::before {
    left: -5px;
    top: -5px;
}

.availability-box::after {
    right: -5px;
    top: -5px;
    transform: rotate(90deg);
}

/* Title */
.availability-title span {
    font-size: 10px;
    letter-spacing: 2px;
    color: #9a8a62;
    text-transform: uppercase;
    display: block;
}

.availability-title h2 {
    font-size: 22px;
    color: #1d2a1f;
    font-weight: 400;
    margin-top: 3px;
}

/* Field Box */
.field-box {
    min-width: 170px;
}

.field-box label {
    display: block;
    font-size: 11px;
    margin-bottom: 5px;
    color: #777;
}

/* Inputs */
.custom-input {
    border-radius: 0;
    border: 1px solid #bfae86;
    height: 42px;
    font-size: 14px;
    box-shadow: none;
    background: #fff;
}

.custom-input:focus {
    border-color: #8a7347;
    box-shadow: none;
}

/* Select */
.custom-select select {
    border-radius: 0 !important;
    border: 1px solid #bfae86 !important;
    height: 42px !important;
    font-size: 14px;
    box-shadow: none !important;
}

/* Button */
.check-btn {
    background: #1f2d1f;
    color: #fff;
    border-radius: 0;
    height: 42px;
    padding: 0 28px;
    font-size: 12px;
    letter-spacing: 1px;
    border: none;
    transition: 0.3s;
}

.check-btn:hover {
    background: #8a7347;
    color: #fff;
}

/* Responsive */
@media screen and (max-width: 1023px) {
    .availability-box {
        flex-wrap: wrap;
    }

    .field-box,
    .btn-box {
        width: 100%;
    }

    .check-btn {
        width: 100%;
    }
}
