/* 
    Styles for Tours and Travels Page
*/

/* --- Outbound Tours Section --- */

.outbound-container {
    max-width: 1500px;
    margin: 0 auto;
}

.outbound-heading-main {
    color: #006eb7;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 0;
    font-family: 'Nunito Sans', sans-serif;
}

.outbound-heading-sub {
    color: #00a0e3;
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 0.9;
    font-weight: 300;
    margin-bottom: 30px;
    font-family: 'Dancing Script', cursive;
    margin-top: -5px;
}

.outbound-desc-1 {
    color: #006eb7;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
}

.outbound-desc-2 {
    color: #777777;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.outbound-card-img-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.outbound-card-title {
    color: #006eb7;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
    line-height: 1.3;
}

/* --- Premium Outbound Card --- */
.premium-outbound-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 110, 183, 0.05);
}

.premium-outbound-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 110, 183, 0.12);
}

.premium-outbound-card .img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.premium-outbound-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-outbound-card:hover .img-wrap img {
    transform: scale(1.15);
}

.premium-outbound-card .img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
    pointer-events: none;
}

.premium-outbound-card .card-content {
    padding: 20px 15px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.premium-outbound-card h6 {
    color: #114c7c;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.premium-outbound-card:hover h6 {
    color: #00a0e3;
}

/* --- Leisure Travel Section --- */

.leisure-section {
    position: relative;
    padding: 0;
}

.leisure-left-bg {
    background: url('../images/tours-and-travels/leisure.png') no-repeat center center;
    background-size: cover;
    min-height: 500px;
    display: flex;
    align-items: flex-start;
}

.leisure-left-text {
    color: #ffffff;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 300;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.leisure-right-bg {
    background-color: #114c7c;
}

.leisure-heading-main {
    color: #ffffff;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 0;
    font-family: 'Nunito Sans', sans-serif;
}

.leisure-heading-sub {
    color: #ffffff;
    font-size: 4rem;
    line-height: 0.9;
    font-weight: 300;
    margin-bottom: 30px;
    font-family: 'Dancing Script', cursive;
    margin-top: -5px;
}

.leisure-desc-1 {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 25px;
}

.leisure-desc-2 {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 25px;
}

/* --- Responsive Image Wraps --- */
.company-img-wrap {
    height: 350px;
}

@media (min-width: 992px) {
    .company-img-wrap {
        height: 550px;
    }
}

.leisure-img-wrap {
    height: 350px;
}

@media (min-width: 992px) {
    .leisure-img-wrap {
        height: 550px;
    }
}

.leisure-img {
    width: 210%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

/* --- Corporate Travel Section --- */
.premium-feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 110, 183, 0.1);
    border-radius: 16px;
    padding: 25px 15px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.premium-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00a0e3 0%, #006eb7 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.premium-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 110, 183, 0.15);
    border-color: transparent;
}

.premium-feature-card:hover::before {
    opacity: 1;
}

.premium-feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(0, 160, 227, 0.1);
    color: #006eb7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.premium-feature-card:hover .premium-feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.premium-feature-text {
    color: #444444;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.4s ease;
}

.premium-feature-card:hover .premium-feature-text {
    color: #ffffff;
}

/* --- Inbound Tours Section --- */

.inbound-container {
    max-width: 1500px;
    margin: 0 auto;
}

.inbound-heading-main {
    color: #006eb7;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 0;
    font-family: 'Nunito Sans', sans-serif;
}

.inbound-heading-sub {
    color: #00a0e3;
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 0.9;
    font-weight: 300;
    margin-bottom: 30px;
    font-family: 'Dancing Script', cursive;
    margin-top: -5px;
}

.inbound-desc-1 {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.inbound-desc-2 {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.inbound-card-img-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.inbound-card-title {
    color: #006eb7;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
    line-height: 1.3;
}

.explore-heading {
    color: #00a0e3;
    font-size: clamp(3rem, 8vw, 4rem);
    font-family: 'Nunito Sans', sans-serif;
    letter-spacing: -2px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.explore-heading-bold {
    font-weight: 900;
}

.explore-heading-light {
    font-weight: 300;
}

/* --- Cruise Tours Section --- */

.cruise-section {
    position: relative;
    padding: 0;
}

.cruise-left-bg {
    background: linear-gradient(135deg, #2b82c4 0%, #1a5f97 100%);
}

@media (min-width: 1200px) {
    .cruise-left-bg {
        padding-left: 100px !important;
    }
}

.cruise-heading-main {
    color: #ffffff;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 0;
    font-family: 'Nunito Sans', sans-serif;
}

.cruise-heading-sub {
    color: #ffffff;
    font-size: 4rem;
    line-height: 0.9;
    font-weight: 300;
    margin-bottom: 30px;
    font-family: 'Dancing Script', cursive;
    margin-top: -5px;
}

.cruise-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.cruise-right-bg {
    background: linear-gradient(to bottom, #114c7c66 0%, #114c7c00 100%), url(../images/tours-and-travels/cruise.jpg) no-repeat center center;
    background-size: cover;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.cruise-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.cruise-nav-list li {
    padding: 0 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
    margin-top: 5px;
}

.cruise-nav-list li:first-child {
    border-left: none;
    padding-left: 0;
}

@media (max-width: 991px) {
    .cruise-nav-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px 10px;
    }

    .cruise-nav-list li {
        border-left: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

.cruise-nav-list a {
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    line-height: 1.3;
    display: block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cruise-nav-list a:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

/* --- Event Management Section --- */

.event-container {
    max-width: 1500px;
    margin: 0 auto;
}

.event-heading-main {
    color: #006eb7;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.1;
    font-family: 'Nunito Sans', sans-serif;
    letter-spacing: -1px;
}

.event-desc {
    line-height: 1.6;
    font-weight: 500;
}

.event-slogan {
    color: #00a0e3;
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    line-height: 1;
    margin-top: 15px;
}

.event-img-wrap {
    height: 340px;
    border-radius: 12px !important;
}

/* --- M.I.C.E. Management Section --- */

.mice-container {
    max-width: 1500px;
    margin: 0 auto;
}

.mice-heading-main {
    color: #006eb7;
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    line-height: 1;
    font-family: 'Nunito Sans', sans-serif;
    letter-spacing: -2px;
}

.mice-heading-sub {
    color: #00a0e3;
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.5rem, 8vw, 3.2rem);
    line-height: 0.8;
    margin-bottom: 25px;
    margin-left: 2px;
}

.mice-desc {
    line-height: 1.5;
    font-weight: 500;
}

.mice-interactive-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.mice-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mice-interactive-card:hover .mice-bg-img {
    transform: scale(1.1);
}

.mice-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 110, 183, 0.98) 0%, rgba(0, 110, 183, 0.65) 60%, transparent 100%);
    opacity: 1;
    transition: all 0.4s ease;
}

.mice-interactive-card:hover .mice-overlay {
    background: linear-gradient(to top, rgba(0, 80, 150, 0.98) 0%, rgba(0, 80, 150, 0.75) 70%, transparent 100%);
}

.mice-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mice-interactive-card:hover .mice-content {
    transform: translateY(-8px);
}

.mice-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mice-desc-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    line-height: 1.6;
    opacity: 1;
    transition: opacity 0.4s ease;
    margin-bottom: 0;
}

.mice-interactive-card:hover .mice-desc-text {
    color: #ffffff;
}

/* Premium Hover Animation */
.premium-hover-img {
    transition: transform 0.6s ease;
    object-fit: cover;
}

.premium-card:hover .premium-hover-img {
    transform: scale(1.08);
}


/* --- Value Added Services Section --- */

.value-added-section {
    position: relative;
}

.value-added-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: url('../images/tours-and-travels/value-added.png') no-repeat left center;
    background-size: cover;
    z-index: 0;
}

.value-added-content {
    position: relative;
    z-index: 1;
}

.value-added-title {
    font-size: 3rem;
}

.value-added-desc {
    max-width: 600px;
}

.value-added-icon {
    color: #EAA638;
    font-size: 18px;
}

.value-added-mobile-img {
    object-fit: cover;
    object-position: right bottom;
    height: 350px;
}

@media screen and (min-width: 991px) {
    .premium-feature-text {
        margin: auto;
        max-width: 75%;
    }
}