

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* =========================================
   Package Container
   ========================================= */
.package-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px 0px 40px;
}

/* =========================================
   Breadcrumbs
   ========================================= */
.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 55px 0 40px 0;
    gap: 5px;
}

.crumb {
    position: relative;
    background: #4dd0e1;
    color: #000000;
    padding: 8px 25px 8px 30px;
    font-size: 0.9rem;
    text-decoration: none;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.crumb:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.crumb.home {
    padding-left: 20px;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}

.crumb.current {
    background: #4dd0e1;
    opacity: 0.75;
    cursor: default;
}

/* =========================================
   Page Title
   ========================================= */
.page-title {
    text-align: center;
    font-size: 2.5rem;
    color: #7ac142;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0 0 50px 0;
    line-height: 1.3;
}

/* =========================================
   Introduction Section
   ========================================= */
.intro-section {
    margin-bottom: 60px;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-paragraph {
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
}

.drop-cap {
    float: left;
    font-size: 3rem;
    line-height: 1;
    margin: 5px 10px 0 0;
    color: #4dd0e1;
    font-weight: 700;
}

.guidelines-bar {
    background-color: #4dd0e1;
    color: #fff;
    padding: 15px 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guidelines-content {
    padding: 30px 20px;
    margin-bottom: 40px;
    animation: fadeIn 0.5s;
}

.guidelines-list {
    list-style: disc;
    margin: 0;
}

.guidelines-list li {
    font-size: 1rem;
}

.guidelines-content::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #4dd0e1;
    margin-top: 30px;
}

.name-list-container {
    margin-bottom: 60px;
}

.list-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.list-heading:hover {
    color: #1a7e7e;
}

.arrow-down {
    font-size: 0.8rem;
}

.chauffeur-names-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #333;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tour-map-section {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.tour-map-wrapper {
    width: 100%;
    max-width: 340px;
    display: flex;
    justify-content: center;
}

.tour-map-image {
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow:
        0 0 25px rgba(140, 210, 243, 0.6),   
        0 15px 35px rgba(0, 0, 0, 0.25);    
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover effect */
.tour-map-image:hover {
    transform: scale(1.02);
    box-shadow:
        0 0 35px rgba(87, 191, 235, 0.8),
        0 20px 45px rgba(0, 0, 0, 0.3);
}

/*card  section*/
.stay-section {
    width: 100%;
    padding: 80px 60px;
    background: #ffffff;
}

.stay-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 30px;
}

.stay-row.reverse .stay-image-wrapper {
    padding-left: 20px;
    padding-right: 45px;  
}

.accommodation h2 {
    text-align: left;
    font-size: 36px;
    line-height: 1.2;
    color: #79bfe0;
    margin-bottom: 20px;
    font-weight: 500;
}

.accommodation p {
    text-align: left;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.stay-content {
    flex: 1;
    max-width: 420px;
}

.stay-content h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #79bfe0;
    margin-bottom: 20px;
    font-weight: 500;
}

.stay-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* Button */
.read-more-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #0b6f75;
    color: #fff;
    font-size: 14px;
    align-items: center;
    border-radius: 4px;
    text-decoration: none;
}

.read-more-btn:hover {
    background: #095a5f;
}

/* Image wrapper */
.stay-image-wrapper {
    flex: 1;
    background: linear-gradient(to bottom, #ffffff, #77d8f5);
    padding: 25px;
    max-width: 800px;
    position: relative;
}

/* 1st row */
.stay-row:not(.reverse) .stay-image-wrapper {
    padding-left: 120px;  
    padding-right: 20px;
}

.stay-row.reverse .stay-image-wrapper {
    padding-right: 120px;   
    padding-left: 20px;
}
.stay-row.reverse .stay-content {
    text-align: right;
    margin-left: auto;
}

.stay-image-wrapper img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}


/* =========================
   Responsive for tablets
   ========================= */
@media (max-width: 992px) {
    .stay-section {
        padding: 60px 0px;
    }

    .stay-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .stay-row.reverse {
        flex-direction: column;      /* stack vertically */
    }

    .stay-row.reverse .stay-content {
        order: 0;                     /* text first */
        text-align: center;           /* center text */
        margin-left: 0;
    }

    .stay-row.reverse .stay-image-wrapper {
        order: 1;                     /* image below text */
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

.stay-row:not(.reverse) .stay-image-wrapper {
    padding-left: 20px;  
    padding-right: 20px;
}

    .stay-content {
        max-width: 100%;
        text-align: center;
    }

    .read-more-btn {
        display: block;
        margin: 0 auto;
    }

    .stay-image-wrapper img {
        height: auto;
    }
}

/* =========================
   Responsive for mobile
   ========================= */
@media (max-width: 375px) {
    .stay-section {
        padding: 30px 15px;
    }

    .stay-row {
        gap: 15px;
    }
     .stay-row.reverse {
        flex-direction: column;
    }

    .stay-row.reverse .stay-content {
        order: 0;
        text-align: center;
        margin-left: 0;
    }

    .stay-row.reverse .stay-image-wrapper {
        order: 1;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .stay-content h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .stay-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .read-more-btn {
        padding: 7px 16px;
        font-size: 12px;
    }

    .stay-image-wrapper {
        padding: 15px;
    }

    .stay-image-wrapper img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
}



