body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

/* --- Header & Navigation --- */
header {
    background-color: #007bff; /* Primary Blue */
    color: white;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffd700; /* Gold highlight on hover */
}

/* --- Main Content Layout --- */
.container {
    width: 80%;
    margin: 20px auto;
    overflow: hidden;
}

/* --- Footer --- */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

/* --- Image Placeholder Styling --- */
.hero-image, .tour-card img, .detail-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}
.hero-image {
    height: 400px;
}

/* --- Tour Cards on Services Page --- */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.tour-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-card-content {
    padding: 15px;
}

.tour-card h3 {
    color: #007bff;
    margin-top: 0;
}

.price {
    font-size: 1.5em;
    font-weight: bold;
    color: #ff6600; /* Orange Price Highlight */
    margin-bottom: 10px;
}

.book-btn {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 10px;
}

/* --- Booking Form (Booking Page) --- */
.booking-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.booking-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.booking-form input, .booking-form select, .booking-form button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.booking-form button {
    background-color: #007bff;
    color: white;
    cursor: pointer;
    font-size: 1.1em;
    margin-top: 20px;
    border: none;
    transition: background-color 0.3s;
}

.booking-form button:hover {
    background-color: #0056b3;
}