.wetu-itinerary-map {
    margin: 20px 0;
    text-align: center;
}

.wetu-itinerary-map img {
    max-width: 100%;
    height: auto;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}

.wetu-accommodations {
    margin: 20px 0;
}

.wetu-accommodation-box {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wetu-accommodation-title {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.wetu-accommodation-content {
    position: relative;
    overflow: hidden;
}

.wetu-accommodation-content iframe {
    max-width: 100%;
    width: 680px;
    height: 546px;
    border: none;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wetu-accommodation-content iframe {
        width: 100%;
        height: 400px;
    }

    .wetu-accommodation-title {
        font-size: 20px;
    }
}

.wetu-landing-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #e67e22; /* Inspired by africasafarico.com.au's orange CTA */
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid #e67e22;
}

.wetu-landing-button:hover {
    background-color: #d35400; /* Darker orange for hover */
    border-color: #d35400;
    transform: translateY(-2px);
}

/* Increase specificity to prevent overrides */
.single-to_book .wetu-landing-button {
    background-color: #e67e22 !important;
    color: #ffffff !important;
    border-color: #e67e22 !important;
}

.single-to_book .wetu-landing-button:hover {
    background-color: #d35400 !important;
    border-color: #d35400 !important;
}

/* ENGQUIRY FORM */
.enquire-button {
    background-color: #D94330;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}
.enquire-button:hover {
    opacity: 0.9;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}
.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 3px solid #D94330; /* Updated border width */
    width: 80%;
    max-width: 600px;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
#modal-title {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    color: black;
    margin-bottom: 20px;
}
.section-title {
    font-size: 18px;
    font-weight: 500;
    color: black;
    margin-top: 20px;
}
.submit-btn {
    background-color: #D94330;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}
.submit-btn:hover {
    opacity: 0.9;
}
form div {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
}
input[type="radio"], input[type="checkbox"] {
    margin-right: 5px;
}
input[type="text"], input[type="email"], input[type="number"], textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
}