/* External CSS Stylesheet for the Provided HTML Structure */
/* This CSS enhances the layout, typography, colors, and responsiveness without altering the HTML classes or structure. */
/* Assumes a mobile-first approach with media queries for larger screens. */
/* Uses flexbox for rows and columns where applicable. */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3 {
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

/* Layout Helpers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

[class*="col-"] {
    padding: 0 15px;
    width: 100%;
}

/* Column Widths */
.col-lg-12, .col-md-12, .col-sm-12 {
    width: 100%;
}

.col-lg-6, .col-md-6 {
    width: 50%;
}

.col-lg-4 {
    width: 33.33%;
}

.col-lg-10 {
    width: 83.33%;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .col-lg-6, .col-lg-4 {
        width: 50%;
    }
    .col-lg-10 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .col-lg-6, .col-lg-4, .col-md-6 {
        width: 100%;
    }
}

/* Section Spacing */
.same-section-spacing, .ws-section-spacing {
    padding: 60px 0;
}

/* Banner Section */
.bg-banner {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    color: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.bg-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner-box {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.banner-box h1 {
    font-size: 42px;
    font-weight: bold;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    background: transparent;
    padding: 10px 0;
    margin: 0;
}

.breadcrumb-item {
    margin: 0 5px;
}

.breadcrumb-item a {
    color: #fff;
}

.breadcrumb-item.active {
    color: #ccc;
}

/* Background Colors */
.bg-gray {
    background-color: #f8f9fa;
}

/* Package Detail */
.package-list-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.package-list-wrap img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.package-list-wrap:hover img {
    transform: scale(1.05);
}

.package-list-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
}

.package-list-duration {
    font-size: 18px;
    font-weight: bold;
}

.package-info h2 {
    font-size: 28px;
    color: #007bff;
}

.package-detail h3 {
    font-size: 24px;
    color: #333;
    margin-top: 30px;
}

/* Quote Card */
.quote-card {
    background-color: #e9f7ff;
    border-left: 5px solid #007bff;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    border-radius: 4px;
}

.quote-card p {
    font-size: 18px;
    margin: 0;
}

.quote-card a {
    color: #000;
    font-weight: bold;
}

/* Included/Not Included */
.package-detail > p {
    margin-bottom: 10px;
}

/* Booking Form */
.search_area_two {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.center-title {
    text-align: center;
    margin-bottom: 30px;
}

.center-title h2 {
    font-size: 32px;
    color: #333;
}

.search_area-inner form {
    display: flex;
    flex-wrap: wrap;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.icon_down select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23333" d="M0 3l6 6 6-6z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.btn-tour {
    background-color: #007bff;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

.btn-tour:hover {
    background-color: #0056b3;
}

.btn-style-one span {
    display: block;
}

/* Other Packages */
.other-packages {
    margin-top: 50px;
}

.other-packages .title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.other-packages .package-list-wrap {
    margin-bottom: 20px;
}

.other-packages .package-list-content p {
    font-size: 16px;
}

.other-packages .package-list-title a {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    transition: color 0.3s;
}

.other-packages .package-list-title a:hover {
    color: #007bff;
}

.package-list-button {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 10px;
    transition: background 0.3s;
}

.package-list-button:hover {
    background: #0056b3;
}

/* Masonry and Misc */
.masonry-item, .masonry {
    width: 100%;
}

.justify-content-center {
    justify-content: center;
}

.mt-3 {
    margin-top: 20px;
}

/* Form Group Adjustments for Grid */
.search_area-inner .col-lg-6,
.search_area-inner .col-lg-12 {
    padding: 0 15px;
}

@media (min-width: 993px) {
    .search_area-inner .col-lg-6 {
        width: 50%;
    }
    .search_area-inner .col-lg-12 {
        width: 100%;
    }
}