.cruise-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('../assets/images/cruise/cruise-banner.jpg') no-repeat center center/cover;
    padding: 7rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cruise-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 105, 148, 0.35);
    z-index: 1;
}

.cruise-hero .container {
    position: relative;
    z-index: 2;
}

.intro-wrap .small {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffebcd;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.cruise-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 1.2s ease-in-out;
}

.btn-cruise {
    background: #ff6f61;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cruise:hover {
    background: #ff4d3d;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Cruise Search (Assuming _CruiseSearch.php styling) */
.cruise-search-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.cruise-search-form .form-select,
.cruise-search-form button {
    border: 2px solid #006994;
    border-radius: 12px;
    padding: 0.9rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cruise-search-form .form-select:focus,
.cruise-search-form button:focus {
    border-color: #ff6f61;
    box-shadow: 0 0 10px rgba(255, 111, 97, 0.5);
    outline: none;
}

.cruise-search-form button {
    background: #006994;
    color: #fff;
    font-weight: 600;
    width: 100%;
    border-radius: 12px;
}

.cruise-search-form button:hover {
    background: #ff6f61;
    transform: translateY(-3px);
}

/* Swiper Slider */
.z_ii {
    background: #fff;
    padding: 5rem 0;
}

.section-title {
    font-size: 2.8rem;
    color: #003087;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.process_cruise {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #e6f7fa, #d0f0f5);
    transition: all 0.3s ease;
}

.process_cruise:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.process_cruise_i i {
    font-size: 3rem;
    color: #006994;
}

.book_title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #003087;
}

.font_14 {
    font-size: 1rem;
    color: #555;
}

.swiper-pagination-bullet-active {
    background: #ff6f61;
}

/* Content Section */
.spacing_control_m_crus {
    padding: 5rem 0;
}

.lead {
    font-size: 16px;
    font-weight: 400;
    color: #444;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 2rem;
    color: #006994;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cruise-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.cruise-list li {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.2rem;
    padding-left: 3.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.cruise-list li:hover {
    transform: translateX(5px);
    color: #006994;
}

.cruise-list li i {
    font-size: 1.4rem;
    color: #ff6f61;
    position: absolute;
    left: 0;
    top: 0.3rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .cruise-hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .cruise-search-form {
        padding: 2rem;
    }

    .process_cruise {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    h4 {
        font-size: 1.8rem;
    }

    .cruise-list li {
        font-size: 1.1rem;
        padding-left: 3rem;
    }
}

@media (max-width: 576px) {
    .cruise-hero h1 {
        font-size: 2rem;
    }

    .intro-wrap .small {
        font-size: 1rem;
    }

    .btn-cruise {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }

    .cruise-search-form {
        padding: 1.5rem;
    }

    .cruise-list li i {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1.1rem;
    }
}