.tour-booking-hero{
    background-size: cover;
    background-position: center center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.tour-booking-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); /* 0.5 = 50% black overlay */
    z-index: 1;
}

.tour-booking-hero h1 {
    color: #fff;
    position: relative;
    z-index: 2;
}

section.enquiry-form{
    display: flex;
}

section.enquiry-form .form-left,
section.enquiry-form .form-right {
    width: 50%;
}

.tour-booking-form {
    padding: 1.5rem;
}

.form-right{
    background-color: #eefff0;
}

.form-left img {
    width: 100%;
    max-width: unset;
    height: 700px;
    object-fit: cover;
}

.form-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 5rem;
}



/************ Tour Main Page *********************/

/* Tour Archive Listing Styles */
.tour-archive {
    border-radius: 8px;
}

.page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2.5rem;
    color: #2d4d2a;
    margin-bottom: 0.5rem;
}

.archive-description {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.tour-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.tour-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.tour-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.tour-thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.tour-content {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tour-title {
    font-size: 1.3rem;
    margin: 0 0 0.7rem 0;
    color: #256029;
}

.tour-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.tour-title a:hover {
    color: #4caf50;
}

.tour-excerpt {
    color: #444;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.pagination {
    margin: 2.5rem 0 0 0;
    text-align: center;
}

.pagination .page-numbers {
    display: inline-block;
    margin: 0 0.25rem;
    padding: 0.5rem 1rem;
    background: #e8f5e9;
    color: #256029;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #256029;
    color: #fff;
}
@media (max-width:1024px){
	.form-right{
		padding:1.5rem;
	}
}

@media (max-width:600px){
	.content h2{
		font-size:1.5rem;
	}
	.tour-content{
		padding:0;
	}
	.form-left{
		display:none;
	}
	section.enquiry-form .form-right{
		width:100%;
	}
	.tour-booking-form {
		padding: 0;
	}
	.tour-booking-hero{
		height: 300px;
	}
}