        /* --- General & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

/* A simple placeholder style for the header you might include */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    z-index: 10;
    /* Add styles for your logo and nav here */
}

/* --- Hero Section --- */
#hero {
    height: 95vh;
    min-height: 700px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../media/thailand.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Creates a simple parallax effect */
    
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding-bottom: 5%; /* Push content up slightly from true center */
}

/* --- Hero Titles --- */
.title-container {
    position: relative;
    margin-bottom: 100px; /* Space between titles and info bar */
}

.main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15vw; /* Responsive font size */
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.script-text {
    font-family: 'Great Vibes', cursive;
    font-size: 6vw; /* Responsive font size */
    position: absolute;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.pre-title {
    top: -2vw;
    left: -12vw;
    transform: rotate(-15deg);
}

.post-title {
    bottom: -1vw;
    left: -8vw;
    transform: rotate(-50deg);
}


/* --- Info Bar --- */
.info-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: absolute;
    bottom: 40px;
}

.info-box {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 15px 30px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ccc;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.info-value.price {
    color: #cddc39; /* A vibrant lime green, as seen in the image */
}

/* --- Overview Section --- */
.overview-section {
    padding: 80px 10%;
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f57c00; /* An orange color */
    margin-bottom: 20px;
    text-align: left;
}


/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .main-title {
        font-size: 150px;
    }
    .script-text {
        font-size: 60px;
    }
    .pre-title {
        left: -120px;
    }
    .post-title {
        left: -80px;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 120px;
    }
    .script-text {
        font-size: 50px;
    }
    .pre-title {
        left: -90px;
        top: -10px;
    }
    .post-title {
        bottom: 10px;
        left: -60px;
    }
    .info-bar {
        bottom: 20px;
        gap: 10px;
    }
    .info-box {
        padding: 10px 20px;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    #hero {
        height: 90vh;
        min-height: 600px;
    }
    .title-container {
        margin-bottom: 40px;
    }
    .main-title {
        font-size: 90px;
    }
    .script-text {
        font-size: 40px;
    }
     .pre-title {
        left: -60px;
        top: 0px;
    }
    .post-title {
        bottom: 5px;
        left: -40px;
    }
    .info-bar {
       position: static; /* Let it flow normally on small screens */
       margin-top: 50px;
    }
}
/* Hide the extra text by default */
.hidden {
    display: none;
}

/* Style Read More link */
.read-more-link {
    display: inline-block;
    color: #de595a;
    font-size: 1.4rem;
    margin: 18px auto 0 auto;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
}

.read-more-link:hover {
    color: #b82527;
}

.read-more-bar {
    text-align: center;
    margin-top: 10px;
}

/* For grey text in hidden part (optional, as per screenshot) */
#overview-more p {
    color: #bababa;
}
.overview-section {
    background: #fff;
    padding: 36px 40px;
    max-width: 1400px;
    min-width: 350px;
    margin: 40px auto 0 auto;
    border-radius: 22px;
    box-shadow: 0 2px 14px 0 rgba(70,70,70,0.04);
    /* Use a small side margin for large screens */
    
}

@media (max-width: 1700px) {
    .overview-section {
        max-width: 96vw;
        padding-left: 3vw;
        padding-right: 3vw;
    }
}

@media (max-width: 900px) {
    .overview-section {
        padding: 24px 5vw;
        margin: 24px auto 0 auto;
        max-width: 99vw;
    }
}

.section-title {
    font-size: 2.rem;
    font-weight: 700;
    color: #f57c00;
    margin-bottom: 20px;
    text-align: left;
    letter-spacing: 1px;
}

.overview-section p {
    font-size: 1.08rem; /* smaller than before */
    text-align: justify;
    margin-bottom: 10px;
    line-height: 1.65;
}
/* --- General/Utility Styles (if not already present) --- */
:root {
    --primary-text-color: #333;
    --secondary-text-color: #666;
    --accent-color: #f77f00; /* A warm orange for highlights */
    --light-bg-color: #f8f8f8; /* For section backgrounds */
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --border-radius-card: 15px;
    --gradient-start: #a8f0b8; /* Light green */
    --gradient-end: #f7f58e;   /* Light yellow */
    --check-green: #4CAF50;    /* For checkmark icons */
}

body {
    font-family: 'Poppins', sans-serif; /* Example font, adjust if you have a specific one */
    line-height: 1.6;
    color: var(--primary-text-color);
    background-color: #f4f7f6; /* Light background for the whole page */
}

/* Adjustments for existing sections (if needed) */
.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
    margin-top: 60px; /* Spacing from previous section */
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.overview-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: var(--border-radius-card);
    box-shadow: var(--card-shadow);
}

/* --- Tour Packages Section --- */
#tour-packages-section {
    padding: 60px 20px;
    background-color: var(--light-bg-color);
}

.package-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* Flexible grid layout */
    gap: 30px;
    max-width: 1200px; /* Limit width for larger screens */
    margin: 0 auto;
}

.package-card {
    background-color: #fff;
    border-radius: var(--border-radius-card);
    box-shadow: var(--card-shadow);
    overflow: hidden; /* Ensures border-radius applies to children */
    display: flex; /* Arranges image and details side-by-side */
    flex-direction: row; /* Default for larger screens */
    min-height: 280px; /* Ensure cards have a minimum height */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* --- Package Image Slider (Swiper) --- */
.package-image-slider {
    width: 300px; /* Fixed width for the image part on large screens */
    flex-shrink: 0; /* Prevents image from shrinking */
    position: relative; /* For Swiper pagination */
    height: auto; /* Allow height to adjust */
}

.package-image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Remove extra space below image */
}

/* Swiper Pagination Dots */
.package-image-slider .swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.package-image-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6); /* Inactive dot color */
    opacity: 1;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    transition: background-color 0.3s ease, width 0.3s ease;
    border-radius: 50%;
}

.package-image-slider .swiper-pagination-bullet-active {
    background: var(--accent-color); /* Active dot color */
    width: 10px; /* Slightly larger */
    height: 10px;
    /* Optional: add a subtle white border/ring */
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8); 
}

/* --- Package Details --- */
.package-details {
    flex-grow: 1; /* Takes remaining space */
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distributes content vertically */
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.package-duration {
    font-size: 0.9em;
    color: var(--secondary-text-color);
    font-weight: 500;
}

.compare-link {
    font-size: 0.9em;
    color: var(--secondary-text-color);
    cursor: pointer;
    transition: color 0.2s ease;
}

.compare-link:hover {
    color: var(--accent-color);
}

.compare-link i {
    margin-right: 5px;
    color: var(--secondary-text-color);
}

.package-title {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--primary-text-color);
    margin-bottom: 10px;
}

.package-itinerary {
    font-size: 0.9em;
    color: var(--secondary-text-color);
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap; /* Allow itinerary items to wrap */
    align-items: center;
    gap: 5px; /* Space between items like '1D' and '->' */
}

.itinerary-day-location {
    color: var(--accent-color); /* Highlight days */
    font-weight: 600;
}

.itinerary-more {
    font-weight: 600;
    color: var(--accent-color);
}

.package-itinerary span {
    white-space: nowrap; /* Prevent day/location from breaking */
}

.package-itinerary .fas { /* For the arrow icon, if you use it */
    font-size: 0.8em;
    color: #ccc;
}


.star-ratings {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.star-rating-btn {
    border: 1px solid #FFD700; /* Gold-ish border */
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.85em;
    font-weight: 600;
    background-color: #fff;
    color: var(--secondary-text-color);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.star-rating-btn.active {
    background: linear-gradient(to right, #FFD700, #FFA500); /* Gold to Orange gradient */
    border-color: #FFA500;
    color: #fff;
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.3);
}

.star-rating-btn:hover:not(.active) {
    background-color: #fff8e1; /* Light yellow hover */
    color: var(--accent-color);
}

.price-info {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.price-value {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-text-color);
    margin-right: 8px;
}

.price-label {
    font-size: 0.9em;
    color: var(--secondary-text-color);
}

.package-inclusions {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column; /* Stack inclusions vertically */
    gap: 8px; /* Space between inclusion items */
}

.package-inclusions li {
    display: flex;
    align-items: center;
    font-size: 0.9em;
    color: var(--primary-text-color);
}

.package-inclusions i {
    color: var(--check-green); /* Green checkmark */
    margin-right: 8px;
    font-size: 1.1em;
}

.request-callback-btn {
    width: 100%; /* Full width within its container */
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: var(--primary-text-color);
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.request-callback-btn:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    opacity: 0.9;
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .package-cards-container {
        grid-template-columns: 1fr; /* Stack cards vertically on smaller screens */
    }

    .package-card {
        flex-direction: column; /* Stack image and details vertically */
    }

    .package-image-slider {
        width: 100%; /* Image takes full width */
        height: 250px; /* Fixed height for image on smaller screens */
        border-top-left-radius: var(--border-radius-card);
        border-top-right-radius: var(--border-radius-card);
        border-bottom-left-radius: 0;
    }

    .package-details {
        padding: 20px; /* Adjust padding */
    }

    .package-title {
        font-size: 1.3em;
    }

    .price-value {
        font-size: 1.6em;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2em;
    }

    .package-cards-container {
        padding: 0 15px;
    }

    .package-details {
        padding: 15px;
    }

    .package-title {
        font-size: 1.2em;
    }

    .price-value {
        font-size: 1.4em;
    }

    .request-callback-btn {
        font-size: 1em;
        padding: 10px 15px;
    }
}