* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF5F15;
    --secondary-orange: #FFA802;
    --gradient-primary: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    --bg-dark: #0d163e;
    --text-light: #ffffff;
    --shadow-primary: 0 20px 40px rgba(255, 95, 21, 0.2);
    --shadow-hover: 0 25px 50px rgba(255, 95, 21, 0.3);
    --border-orange: rgba(255, 95, 21, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    background: var(--bg-dark);
    color: var(--text-light);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container-fluid {
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 max(20px, 3vw);
}

h2,
h3 {
    color: white;
}

p {
    color: rgba(255, 255, 255, 0.9);
}


/* hero secton style start  */
/* Video Section */
.video-section {
    position: relative;
    width: 100%;
    height: 87vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, rgba(13, 22, 62, 0.29) 0%, rgba(10, 15, 44, 0.221) 100%);*/
    z-index: 1;
}

/* Floating Animation Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.08;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -15%;
    right: -8%;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    left: -5%;
    animation-delay: 3s;
}

.shape-3 {
    width: 180px;
    height: 180px;
    top: 50%;
    right: 20%;
    animation-delay: 6s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }

    33% {
        transform: translateY(-40px) rotate(120deg) scale(1.1);
    }

    66% {
        transform: translateY(20px) rotate(240deg) scale(0.9);
    }
}

/* Title Section */
.hero-title-section {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    /* animation: fadeInUp 1s ease-out; */
}

.cruise-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 95, 21, 0.15);
    border: 2px solid rgba(255, 95, 21, 0.4);
    color: var(--secondary-orange);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.cruise-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Form Section */
.form-section {
    /* background: var(--bg-dark); */
    padding: 60px 40px;
    position: absolute;
    top: 5%;
    left: 0%;
    z-index: 9999999999999;
    width: 100%;
}

/* Booking Form */
.booking-form-container {
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease-out 0.3s both;

}

.booking-form {
    background: var(--bg-dark);

    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 95, 21, 0.3);
    border-radius: 30px;
    padding: 35px 50px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

/* Trip Type Selection */
.trip-type {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.trip-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.trip-option input[type="radio"] {
    width: 22px;
    height: 22px;
    accent-color: var(--primary-orange);
    cursor: pointer;
}

.trip-option label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.form-field {
    position: relative;
}

.form-field.span-2 {
    grid-column: span 2;
}

.form-field label {
    display: block;
    font-size: 22px;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-orange);
    font-size: 18px;
    pointer-events: none;
}



/* Hide default date icon */
input[type="date"]::-webkit-calendar-picker-indicator {
    color: white;
    font-size: 20px;
}

input[type="date"] {
    color-scheme: dark;
}


.form-field input,
.form-field select {
    width: 100%;
    padding: 14px 18px 14px 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 95, 21, 0.25);
    border-radius: 14px;
    color: white;
    font-size: 19px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.form-field input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-orange);
    box-shadow: 0 0 25px rgba(255, 95, 21, 0.4);
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFA802' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 45px;
    cursor: pointer;
}

.form-field select option {
    background: var(--bg-dark);
    color: white;
    padding: 12px;
}

/* Passenger Selector */
.passenger-section {
    margin-bottom: 25px;
}

.passenger-label {
    display: block;
    font-size: 22px;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.passenger-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.passenger-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 95, 21, 0.2);
    padding: 16px;
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.passenger-card:hover {
    background: rgba(255, 95, 21, 0.1);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}

.passenger-card.active {
    background: var(--gradient-primary);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 95, 21, 0.4);
}

.passenger-card i {
    font-size: 26px;
    display: block;
    margin-bottom: 8px;
    color: white;
}

.passenger-card span {
    font-size: 19px;
    font-weight: 600;
    color: white;
}

/* Search Button */
.search-button {
    width: fit-content;
    background: var(--gradient-primary);
    border: none;
    margin: auto;
    padding: 18px;
    border-radius: 14px;
    color: white;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(255, 95, 21, 0.4);
}

.search-button i {
    font-size: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-field.span-2 {
        grid-column: span 1;
    }

    .passenger-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-section {
        height: 50vh;
    }

    .form-section {
        padding: 40px 25px;
    }

    .cruise-title {
        font-size: 2.2rem;
    }

    .booking-form {
        padding: 30px 25px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .passenger-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trip-type {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .video-section {
        height: 40vh;
    }

    .cruise-badge {
        font-size: 12px;
        padding: 10px 20px;
    }

    .booking-form {
        padding: 25px 20px;
    }

    .search-button {
        padding: 16px;
        font-size: 16px;
    }
}

/* hero secton style end  */



/* Featured Cruises Section */
.featured-cruises {
    padding: 80px 0;
    margin-top: 18rem;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(13, 22, 62, 0.8) 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 95, 21, 0.1);
    border: 2px solid rgba(255, 95, 21, 0.3);
    color: var(--secondary-orange);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.cruises-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.cruise-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.cruise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
    transition: left 0.6s;
    z-index: 1;
}

.cruise-card:hover {
    /* transform: translateY(-15px); */
    border-color: var(--primary-orange);
    box-shadow: 0 30px 80px rgba(255, 95, 21, 0.5);
}

.cruise-card:hover::before {
    left: 100%;
}

.cruise-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.cruise-card:nth-child(1) .cruise-image {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.cruise-card:nth-child(2) .cruise-image {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.cruise-card:nth-child(3) .cruise-image {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.cruise-card:nth-child(4) .cruise-image {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.cruise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cruise-card:hover .cruise-image img {
    transform: scale(1.1);
}

.cruise-image i {
    opacity: 0.3;
    transition: all 0.4s ease;
}

.cruise-card:hover .cruise-image i {
    opacity: 0.5;
    transform: scale(1.2);
}

.cruise-badge-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--secondary-orange);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 17px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 95, 21, 0.5);
    z-index: 2;
}

.cruise-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.cruise-name {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.cruise-route {
    font-size: 20px;
    color: white;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cruise-route i {
    color: var(--secondary-orange);
    font-size: 14px;
}

.cruise-features {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 2px solid rgba(255, 95, 21, 0.3);
    font-size: 12px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    background: rgba(255, 95, 21, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
}

.feature i {
    color: var(--secondary-orange);
    font-size: 13px;
}

.cruise-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.cruise-price {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.book-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 10px 24px;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 10px 25px rgba(255, 95, 21, 0.3);
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 95, 21, 0.5);
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.8) 0%, rgba(13, 22, 62, 0.95) 100%);
    position: relative;
    border-top: 3px solid rgba(255, 95, 21, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: linear-gradient(145deg, rgba(26, 31, 58, 0.9), rgba(13, 22, 62, 0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.15), transparent);
    transition: left 0.6s;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 95, 21, 0.1), transparent);
    border-radius: 50%;
}

.benefit-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-orange);
    box-shadow: 0 30px 80px rgba(255, 95, 21, 0.5);
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    animation: benefitFloat 3s ease-in-out infinite;
    font-size: 48px;
    color: white;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(255, 95, 21, 0.3);
}

.benefit-icon::before {
    content: '';
    position: absolute;
    width: 130%;
    height: 130%;
    border: 2px dashed rgba(255, 95, 21, 0.2);
    border-radius: 25px;
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes benefitFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.benefit-title {
    font-size: 24px;
    font-weight: 900;
    color: orange;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.benefit-description {
    font-size: 21px;
    color: white;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    text-align: justify;
}

/* Top Destinations Section */
.destinations {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(13, 22, 62, 0.95) 0%, var(--bg-dark) 100%);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.destination-card {
    position: relative;
    height: 300px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 95, 21, 0.2);
}

.destination-card:hover {
    /* transform: translateY(-10px); */
    border-color: var(--primary-orange);
    box-shadow: 0 20px 60px rgba(255, 95, 21, 0.4);
}

.destination-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    position: relative;
    overflow: hidden;
}

.destination-card:nth-child(2) .destination-image {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.destination-card:nth-child(3) .destination-image {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.destination-card:nth-child(4) .destination-image {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    z-index: 2;
}

.destination-info h4 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0 0 5px 0;
}

.destination-info p {
    font-size: 19px;
    color: white;
    margin: 0;
}

/* Special Offers Section */
.special-offers {
    padding: 80px 0;
    background: var(--bg-dark);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 60px rgba(255, 95, 21, 0.4);
}

.offer-badge {
    display: inline-block;
    background: rgba(255, 95, 21, 0.2);
    color: var(--secondary-orange);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.offer-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-orange);
    margin-bottom: 10px;
}

.offer-description {
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
}

.offer-validity {
    font-size: 22px;
    color: white;
    padding: 10px;
    background: rgba(255, 95, 21, 0.1);
    border-radius: 8px;
}


/* Responsive Design */
@media (max-width: 1400px) {
    .booking-form {
        transform: translateX(20px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-row {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-text-section {
        padding-right: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .booking-form {
        transform: translateX(0);
        max-width: 600px;
        margin: 0 auto;
    }

    .cruise-subtitle {
        max-width: 100%;
    }

    .cruises-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .featured-cruises {
        /* padding: 80px 0; */
        margin-top: 48rem !important;
    }

    .cruise-hero {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .cruise-hero-content {
        padding: 60px 20px;
    }

    .cruise-title {
        font-size: 2.2rem;
    }

    .booking-form {
        padding: 30px 25px;
    }

    .form-group-row {
        grid-template-columns: 1fr;
    }

    .hero-row {
        gap: 40px;
    }

    .form-group-row {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 25px;
    }

    .cruises-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .destination-card {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .cruise-title {
        font-size: 1.9rem;
    }

    .cruise-subtitle {
        font-size: 1rem;
    }

    .booking-form {
        padding: 25px 20px;
    }

    .booking-form h3 {
        font-size: 22px;
    }

    .passenger-selector {
        grid-template-columns: repeat(2, 1fr);
    }

    .cruises-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 20px;
    }

    .form-group-row {
        grid-template-columns: 1fr;
    }

    .shape-1,
    .shape-2 {
        display: none;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .destination-card {
        height: 200px;
    }

    .passenger-selector {
        flex-direction: column;
    }

    .passenger-item {
        min-width: 100%;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}







/* Slider Container Styles */
.slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.cruises-grid.slider {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    overflow: visible;
}

.cruises-grid.slider .cruise-card {
    width: calc(25% - 19px);
    flex-shrink: 0;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(255, 95, 21, 0.3);
}

.slider-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 95, 21, 0.5);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

/* Top Cruises Section Styles */
.top-cruises {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(13, 22, 62, 0.8) 100%);
    border-top: 3px solid rgba(255, 95, 21, 0.3);
}

.top-cruise-card {
    background: linear-gradient(145deg, rgba(26, 31, 58, 0.9), rgba(13, 22, 62, 0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 17px);
    flex-shrink: 0;
}

.top-cruise-card:hover {
    /* transform: translateY(-12px); */
    border-color: var(--primary-orange);
    box-shadow: 0 25px 70px rgba(255, 95, 21, 0.45);
}

.top-cruise-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.top-cruise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.top-cruise-card:hover .top-cruise-image img {
    transform: scale(1.15);
}

.rating-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--secondary-orange);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 95, 21, 0.5);
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-cruise-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cruise-company {
    font-size: 13px;
    color: var(--secondary-orange);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-cruise-name {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.top-cruise-route {
    font-size: 21px;
    color: orange;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-cruise-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 95, 21, 0.3);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 19px;
}

.highlight-item i {
    color: var(--secondary-orange);
    font-size: 16px;
    width: 20px;
}

.top-cruise-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.destinations-grid.slider {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.destinations-grid.slider .destination-card {
    max-width: calc(25% - 19px);
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .cruises-grid.slider .cruise-card {
        min-width: calc(33.333% - 17px);
    }

    .top-cruise-card {
        min-width: calc(50% - 13px);
    }


}

@media (max-width: 768px) {
    .slider-container {
        padding: 0 50px;
    }

    .cruises-grid.slider .cruise-card,
    .top-cruise-card {
        min-width: calc(100% - 0px);
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}