

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root {
    --primary-color: #1897de;
    --primary-color-50: #1895dee7;
    --secondary-color: #010101; 
    --secondary-color-dark: #303030;
    --dark-blue: #1897de;
    --territiary-color: #231f20; 

    --white-color: #fff;
    --black-color: #000;
    --primary-font: "Meno-display", serif;
  
}

body{
   font-family: "Meno-display", serif;
   color: var(--secondary-color);

}
.container{
    max-width: 1240px;
}

/* =========================
HEADER
========================= */

.main-header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    padding:20px 0;
    transition:0.4s ease;
}

/* Sticky Header */

.main-header.sticky {
    position: fixed;
    /* background: var(--primary-color); */
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: 0.4s ease;
    background: #afafafb3;
}

/* Navbar */

.custom-navbar{
    position:relative;
}

.navbar-collapse{
    display:flex !important;
    justify-content:space-between;
    align-items:center;
}

/* Logo Center */

.navbar-brand{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    margin:0;
    z-index:5;
}

.navbar-brand img {
    height: 85px;
}

/* Menus */

.left-menu,
.right-menu{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-link{
    color: var(--white-color) !important;
    font-size:13px;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:1px;
    transition:0.3s;
}

.nav-link:hover{
    color:var(--primary-color) !important;
    text-decoration: underline;
}

/* Toggle Button */

.navbar-toggler{
    display:none;
}


.header-btn{
    background: var(--primary-color);
    color: var(--white-color);
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-btn:hover{
    background: var(--primary-color);
    color: var(--white-color);
}

.main-header.sticky .nav-link:hover {
    color: var(--secondary-color) !important;
}
.main-header.sticky .header-btn{
    background-color: var(--white-color);
    color: var(--primary-color);
}


/* Mobile */


 /* banner section */

.hero-banner{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
}

/* =========================
BOOKING BAR
========================= */

.booking-wrapper {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
    padding: 0 20px;
    font-family: monospace;
}

.booking-bar {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    height: 65px;
}

.booking-item {
    flex: 1;
    padding: 18px 28px;
    border-right: 1px solid var(--primary-color);
}

.booking-item label {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary-color-50);
    font-weight: 700;
    margin-bottom: 0px;
}

.booking-input-wrap {
    position: relative;
}

.booking-input-wrap input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    color: var(--primary-color-50);
    outline: none;
    padding-right: 30px;
    cursor: pointer;
}

.booking-input-wrap i {
    position: absolute;
    right: 0;
    top: -9px;
    color: var(--primary-color-50);
    font-size: 18px;
}

.guests-box {
    display: flex;
    flex-direction: column;
}

.guest-controls {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 4px;
}

.guest-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-size: 26px;
    color: var(--primary-color-50);
    cursor: pointer;
    line-height: 1;
}

#guestCount {
    font-size: 18px;
    color: #222;
}

.reserve-btn {
    background: var(--primary-color);
    border: none;
    padding: 0 45px;
    height: 100%;
    min-height: 110px;
    font-size: 15px;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--white-color);
    transition: 0.3s;
    white-space: nowrap;
}

.reserve-btn:hover {
    background: var(--primary-color-50);
    color: var(--white-color);
}

@media(max-width:991px){

    .header-btn{
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }

}


/* =========================
MOBILE
========================= */

@media(max-width:991px){

    .main-header{
        padding:15px 0;
    }

    .custom-navbar{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    /* Logo Left */

    .navbar-brand{
        position:relative;
        left:auto;
        transform:none;
    }

    .navbar-brand img{
        height:50px;
    }

    /* Toggle Right */

    .navbar-toggler{
        display:block;
        border:0;
        padding:0;
    }

    .navbar-toggler:focus{
        box-shadow:none;
    }

    .navbar-toggler i{
        color: var(--white-color);
        font-size:34px;
    }

    /* Mobile Menu */

    .navbar-collapse{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background: var(--primary-color);
        padding:20px;
        border-radius:12px;
        margin-top:15px;
        display:none !important;
        flex-direction:column;
        align-items:flex-start;
    }

    .navbar-collapse.show{
        display:flex !important;
    }

    .left-menu,
    .right-menu{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
        width:100%;
    }

    .right-menu{
        margin-top:10px;
    }


     .booking-wrapper{
        bottom:20px;
    }

    .booking-bar{
        grid-template-columns:1fr;
        border-radius:18px;
    }

    .booking-field{
        border-right:none;
        border-bottom:1px solid rgba(0,0,0,0.08);
    }

    .booking-btn-wrap{
        width:100%;
    }

    .reserve-btn{
        width:100%;
    }

  

}

@media (max-width: 768px) {

    .booking-bar {
        flex-direction: column;
        border-radius: 18px;
    }

    .booking-item {
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid var(--primary-color);
    }

    .reserve-btn {
        width: 100%;
        min-height: 65px;
    }
}

/* .top-marquee {
    background: var(--dark-blue);
    overflow: hidden;
    padding: 12px 0;
    width: 100%;
    position: relative;
    margin: 40px 0;
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marqueeMove 18s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 25px;
    white-space: nowrap;
    padding-left: 0;
    margin-left: 0;
}
.marquee-content span {
    letter-spacing: 0.3px;
    color: var(--white-color);
}

.marquee-content a {
    color: var(--white-color);
    text-decoration: none;
}

.book-btn {
    background: var(--white-color);
    color: var(--primary-color) !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.book-btn:hover {
    background: var(--primary-color);
    color: #fff !important;
} */

/* @keyframes marqueeMove {

  
    from {
        transform: translateX(100%);
    }

  
    to {
        transform: translateX(-100%);
    }
} */

.luxury-about-section {
    padding: 90px 0;

    overflow: hidden;
}

.luxury-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.about-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 16px;
}

.about-heading {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 25px;
 
    line-height: 60px;
}

.about-heading span {
    color: var(--secondary-color);
    font-style: italic;
}
.gold-line {
    width: 70px;
    height: 2px;
    margin-bottom: 35px;

 background: linear-gradient(90deg, #0000, #010101, #0000)
}

.luxury-about-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--primary-color-50);
    margin-bottom: 15px;
    /* max-width: 620px; */
}

.luxury-about-content p a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.about-stats {
    display: flex;
    gap: 65px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.stat-box h3 {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 400;
}

.stat-box span {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-weight: 500;
}

.luxury-about-image {
    position: relative;
}

.luxury-about-image img {
    width: 100%;
    border-radius: 2px;
    display: block;
    object-fit: cover;
    min-height: 620px;
}

/* IMAGE EFFECT */
/* .luxury-about-image::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-top: 2px solid var(--secondary-color);
    border-left: 2px solid var(--secondary-color);
}

.luxury-about-image::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 120px;
    height: 120px;
    border-right: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
} */

/* RESPONSIVE */
@media (max-width: 992px) {

    .luxury-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-heading {
        font-size: 48px;
    }

    .luxury-about-image img {
        min-height: auto;
    }
}

@media (max-width: 767px) {

    .luxury-about-section {
        padding: 70px 0;
    }

    .about-heading {
        font-size: 38px;
    }

    .luxury-about-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .about-stats {
        gap: 35px;
    }

    .stat-box h3 {
        font-size: 42px;
    }

    .luxury-about-image::before,
    .luxury-about-image::after {
        display: none;
    }
}

.cruise-section {
    background: var(--primary-color);
    padding: 80px 0;
    position: relative;
    /* overflow: hidden; */
    margin-top: 100px;
}
.cruise-section .wave-top{
   position: absolute;
    top: -75px;

}
/* .cruise-section .wave-bottom {
    position: absolute;
    bottom: -75px;
    transform: rotate(
180deg);
}
.cruise-section .wave-bottom path{
    color: var(--primary-color);
} */
.cruise-section svg path {
    fill: var(--primary-color);
 
}

/* TOP CURVE */


/* HEADING */
.cruise-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
}

.cruise-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cruise-heading h2 {
    font-size: 48px;
    color: var(--white-color);
    font-weight: 300;
    margin-bottom: 20px;

}

.cruise-heading h2 span {
    color: var(--secondary-color);
    font-style: italic;
}

/* GRID */
.cruise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */
.cruise-card {
    background: var(--white-color);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s ease;
    position: relative;
}
.cruise-card::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
background: linear-gradient(90deg, #0000, #010101, #0000);

    transition: width 0.5s ease;
}

.cruise-card:hover::after{
    width: 100%;
}


.cruise-image {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.cruise-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;

    transition: transform 0.7s ease;
}

/* Smooth Zoom */
.cruise-card:hover .cruise-image img {
    transform: scale(1.09);
}

.cruise-content {
    padding: 16px;
}

.cruise-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 14px;
    font-weight: 400;
    margin: 0;
  
}

.cruise-content p {
    color: var(--secondary-color);
    font-size: 14px;
    line-height: 1.8;
   margin-top: 8px;
}

.cruise-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cruise-price {
    color: var(--secondary-color);
    font-size: 27px;
}

.cruise-price span {
    font-size: 14px;
    color: #8b8989;
    margin-left: 4px;
}

.cruise-btn {
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 2px;
    text-decoration: none;
    font-weight: 700;
    position: relative;
}



.cruise-btn:hover {
   color: var(--white-color);opacity: .9;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .cruise-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cruise-heading h2 {
        font-size: 48px;
    }
}

@media (max-width: 767px) {

    .cruise-section {
        padding: 90px 0;
    }

    .cruise-grid {
        grid-template-columns: 1fr;
    }

    .cruise-heading h2 {
        font-size: 38px;
    }

    .cruise-image img {
        height: 260px;
    }

    .cruise-content {
        padding: 24px;
    }

    .cruise-content h3 {
        font-size: 32px;
    }

    .cruise-price {
        font-size: 32px;
    }
}

.one-day {
    position: relative;
    padding: 100px 0;
    background: var(--primary-color);
    
    border-top: 1px solid var(--white-color);
}

/* Background Stars Layer */

.one-day p{
    font-size: 30px;
    color: var(--white-color);
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}
.one-day p strong{
    font-size: 14px;
    color: var(--secondary-color);
}
.one-day .wave-top {
    position: absolute;
    bottom: -47px;
    transform: rotate(180deg);
}
.one-day svg path {
    fill: var(--primary-color);
 
}
.fleet-section{
    padding: 100px 0;
    background: #f6f5f2;
   
}

.container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.section-title h2{
    font-size: 48px;
    font-weight: 400;
    color: var(--primary-color);
    margin-top: 10px;
}

.section-title h2 em{
    color: var(--secondary-color);
    font-style: italic;
}

.line{
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, #0000, #010101, #0000);
    margin: 20px auto 0;
}

/* Grid */
.fleet-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

/* Card */
.fleet-card{
    background: #fff;
    border: 1px solid #dbe4ea; position: relative;
}
.fleet-image {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.fleet-image img{
    width: 100%;
    display: block;
    height: 330px;
    object-fit: cover;transition: transform 0.7s ease;
}
.fleet-card:hover .fleet-image img {
    transform: scale(1.09);
}

.fleet-content{
    padding: 30px;
}

.fleet-content h3{
    font-size: 30px;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 8px;
}

.subtitle{
    font-size: 16px;
    color: var(--dark-blue);
    font-style: italic;
    margin-bottom: 30px;
}

/* Info */
.info{
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.info span{
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--secondary-color-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.info h6{
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

/* Features */
.features{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    border-top: 1px solid var(--dark-blue);
    padding-top: 23px;
}

.features ul{
    padding-left: 18px;
}

.features li{
    font-size: 16px;
    color: var(--dark-blue);
    margin-bottom: 9px;
    
}
.features li::marker {
    color: var(--secondary-color);
}

/* Button */
.view-btn {
    display: inline-block;
    margin-top: 6px;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 700;
}
.fleet-card::after{

    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #0000, #010101, #0000);
    transition: width 0.5s ease;
}
.fleet-card:hover::after{
    width: 100%;
}

/* Responsive */
@media(max-width:991px){

    .fleet-grid{
        grid-template-columns: 1fr;
    }

    .section-title h2{
        font-size: 40px;
    }
}

@media(max-width:576px){

    .fleet-content{
        padding: 20px;
    }

    .features{
        grid-template-columns: 1fr;
    }

    .section-title h2{
        font-size: 32px;
    }

    .fleet-image img{
        height: 240px;
    }
}


.included-section {
    background: #f3efe8;
    padding: 64px 0px;
    text-align: center;
}



.sub-heading {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.included-section h2 {
     font-size: 30px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 10px 0 15px;  letter-spacing: 1px;
}

.line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #0000, #010101, #0000);
    margin: 0 auto 70px;
}

.included-section .included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 110px;
}

.included-section .item img {
    width: 45px;
    margin-bottom: 20px;
    font-size: 16px;
}

.included-section .item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 300;
  
}

.included-section .item p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--secondary-color-dark);
   
    margin: auto;
}

/* Responsive */

@media (max-width: 992px) {
    .included-section .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

   .included-section .included-section {
        padding: 70px 20px;
    }

    .included-section .included-section h2 {
        font-size: 36px;
    }

    .included-section .included-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .included-section .item h3 {
        font-size: 28px;
    }

    .included-section .item p {
        font-size: 18px;
    }
}


/* =========================
   REVIEWS SECTION
========================= */

.reviews-section {
    background: var(--primary-color);
    padding: 140px 00px;
    position: relative;
    overflow: hidden;
}

/* Top Wave */
.reviews-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23f5f2eb' d='M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40 L1440,80 L0,80 Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: rotate(
180deg);
}

/* Bottom Wave */
.reviews-section::after {
      content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;

    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23f5f2eb' d='M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40 L1440,80 L0,80 Z'%3E%3C/path%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.reviews-section .reviews-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 16px;
}

.reviews-section h2 {
font-size: 36px;
    color: var(--white-color);
    font-weight: 300;
    margin-bottom: 20px;
}

.reviews-section .reviews-line {
  width: 70px;
    height: 2px;
    margin-bottom: 35px;
    background: linear-gradient(90deg, #0000, #010101, #0000);
    margin: 0 auto;
}

.reviews-section .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 64px;
}

.reviews-section .review-card {
    border: 1px solid rgb(255 255 255 / 7%);
    padding: 40px;
    text-align: left;
    position: relative;
    background: var(--white-color);
    border-radius: 5px;
}

.reviews-section .quote {
    font-size: 119px;
    color: rgb(145 143 143 / 69%);
    position: absolute;
    top: 10px;
    left: 18px;
    line-height: 1;
}

.reviews-section .stars {
    color: var(--secondary-color-dark);
    margin-bottom: 25px;
    letter-spacing: 6px;
    font-size: 16px;
    
}

.reviews-section .review-text {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 0px;
    font-style: italic;
     
    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 5;   /* 5 lines */
    -webkit-box-orient: vertical;

    position: relative;

}
 .reviews-section .review-text.active {
    -webkit-line-clamp: unset;
}
.reviews-section .read-more {
    color: var(--secondary-color) !important;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}
.reviews-section .card-line {
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    margin-bottom: 20px;
}

.reviews-section .review-card h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 600;
}

.reviews-section .review-card span {
    color: var(--secondary-color-dark);
    font-size: 13px;
    margin-bottom: 20px;
}
.reviews-section .reviews-link {
    display: inline-block;
    margin-top: 50px;
    color: var(--white-color);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}
.reviews-section .reviews-link svg{
   width: 15px;
}

.reviews-section .reviews-link:hover {
    color: var(--secondary-color);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .reviews-section .reviews-grid {
        grid-template-columns: 1fr;
    }

   .reviews-section .reviews-section h2 {
        font-size: 38px;
    }
}

@media (max-width: 576px) {

  .reviews-section {
        padding: 90px 20px;
    }

    .reviews-section h2 {
        font-size: 30px;
    }

    .reviews-section .review-card {
        padding: 30px 22px;
    }

    .reviews-section .review-text {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* =========================
   GALLERY SECTION
========================= */

/* =========================
   GALLERY SECTION
========================= */

.gallery-section {
    background: #f5f2eb;
    padding: 80px 0;
}

.gallery-section .gallery-container {
    text-align: center;
}

.gallery-section .gallery-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 16px;
}

.gallery-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 300;
    margin-bottom: 20px;
}

.gallery-section .gallery-line {
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, #0000, #010101, #0000);
    margin: 0 auto 50px;
}

/* =========================
   SLIDER
========================= */



.gallery-section .gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    height: 320px;
    position: relative;
}

.gallery-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
    display: block;
}

.gallery-section .gallery-item:hover img {
    transform: scale(1.08);
}

/* Overlay */

.gallery-section .gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transition: 0.3s;
    z-index: 1;
}

.gallery-section .gallery-item:hover::before {
    opacity: 1;
}

/* =========================
   SWIPER BUTTONS
========================= */

.gallerySwiper .swiper-button-next, .gallerySwiper .swiper-button-prev {
    color: var(--primary-color);
    background: white;
    width: 40px;
    border-radius: 50%;
    height: 40px;
}

.gallerySwiper .swiper-button-next::after, .gallerySwiper .swiper-button-prev::after {
    font-size: 17px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 576px) {

    .gallery-section {
        padding: 60px 15px;
    }

    .gallery-section h2 {
        font-size: 28px;
    }

    .gallery-section .gallery-item {
        height: 260px;
    }
}

.fancybox__container {
    z-index: 999999999999999999;

}

/* =========================
   CTA SECTION
========================= */

.cta-section {
    position: relative;
    background: url("../images/boat.jpg") center center/cover no-repeat;
  
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 96px 0;
    background-position: top;
}

/* Overlay */

.cta-section .cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 37, 67, 0.55);
}

/* Content */

.cta-section .cta-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.cta-section .cta-content h2 {
    color: var(--white-color);
    font-size: 60px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 0px;
  
}

.cta-section .cta-content p {
    color: var(--white-color);
    font-size: 17px;
    margin-bottom: 40px;
    opacity: 0.75;
    margin-top: 10px;
}

/* Button */

.cta-section .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--white-color);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s ease;
    padding: 16px 40px;
}

.cta-section .cta-btn:hover {
  
    transform: translateY(-4px);
    text-shadow: 0 2px 8px rgba(15, 41, 66, 0.35);
   
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .cta-section .cta-content h2 {
        font-size: 52px;
    }

    .cta-section .cta-content p {
        font-size: 22px;
    }
}

@media (max-width: 576px) {

     .cta-section {
        min-height: 380px;
    }

    .cta-section .cta-content h2 {
        font-size: 38px;
    }

    .cta-section .cta-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }

     .cta-section .cta-btn {
        min-width: 240px;
        height: 60px;
        font-size: 16px;
    }
}


/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    background: #f5f2eb;
    padding: 90px 0px;
}

.contact-section .contact-container {


    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}

/* =========================
   LEFT SIDE
========================= */

.contact-section .contact-subtitle {
    color: var(--secondary-color);
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-section .contact-info h2 {
    font-size: 30px;
    color: var(--primary-color);
    font-weight: 300;
    margin-bottom: 25px;
   
}
 
.contact-section .contact-line {
    width: 70px;
    height: 2px;
       background: linear-gradient(90deg, #0000, #010101, #0000);
    margin-bottom: 50px;
}

/* Contact Item */

.contact-section .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 16px;
}   

.contact-section .contact-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--secondary-color);
    border-radius: 50%;

    color: var(--secondary-color);

    flex-shrink: 0;
}

.contact-section .contact-icon svg {
    width: 18px;
    height: 18px;

    stroke: currentColor;
}

.contact-section .contact-text h4 {
    color: var(--dark-blue);
    font-size: 14px;
    margin-bottom: 3px;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-section .contact-text a,
.contact-text p {
    color: var(--secondary-color-dark);
    text-decoration: none;
    font-size: 17px;
    line-height: 1.6;
}

.contact-section .contact-text a:hover {
    color: var(--secondary-color);
}

/* =========================
   RIGHT SIDE FORM
========================= */

.contact-section .contact-form {
    width: 100%;
}

.contact-section .form-group {
    margin-bottom: 26px;
}

.contact-section .form-group label {
    display: block;
    color:  var(--secondary-color-dark);
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 14px;
    font-weight: 600;
}

.contact-section .form-group input, .form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--dark-blue);
    background: transparent;
    padding-bottom: 14px;
    
    color: var(--dark-blue);
    outline: none;
    font-size: 17px;
}

.contact-section .form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7ab8d4;
}

.contact-section .form-group textarea {
    resize: none;
    height: 120px;
}

/* Button */

.contact-section .contact-btn {
 
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s ease;
    padding: 12px 32px;
}

.contact-section .contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(15, 41, 66, 0.2);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .contact-section .contact-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }

      .contact-section .contact-info h2 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {

    .contact-section {
        padding: 70px 20px;
    }

    .contact-section .contact-info h2 {
        font-size: 34px;
    }

      .contact-section .contact-text a,
    .contact-text p {
        font-size: 17px;
    }

     .contact-section .form-group input,
    .form-group textarea {
        font-size: 17px;
    }

     .contact-section .contact-btn {
        width: 100%;
        height: 60px;
        font-size: 16px;
    }
}




/* =========================
   FOOTER
========================= */

.footer {
    position: relative;
    background: var(--secondary-color-dark);
    overflow: hidden;
}

/* =========================
   TOP WAVE
========================= */

.footer .footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.footer .footer-wave svg {
    width: 100%;
    height: 70px;
    display: block;
}

.footer .footer-wave path {
    fill: #f5f2eb;
}

/* =========================
   CONTAINER
========================= */
.footer .footer-container {
    padding: 144px 0px 70px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 60px;
}

/* =========================
   LOGO / ABOUT
========================= */

.footer .footer-logo {
    width: 140px;
    margin-bottom: 30px;
}

.footer .footer-about p {
    color: var(--white-color);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Social */

.footer .footer-socials {
    display: flex;
    gap: 14px;
}

.footer .footer-socials a {
    width: 42px;
    height: 42px;

    border: 1px solid var(--white-color);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white-color);
    text-decoration: none;

    transition: 0.3s ease;
}

.footer .footer-socials a:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    border-color: var(--secondary-color);
}

/* =========================
   TITLES
========================= */

.footer .footer-col h3 {
    color: var(--white-color);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 300;
}

.footer .footer-space {
    margin-top: 40px;
}

/* =========================
   LINKS
========================= */

.footer .footer-col ul {
    list-style: none;
    padding: 0;
}

.footer .footer-col ul li {
    margin-bottom: 8px;
}

.footer .footer-col ul li a,
.footer-col ul li p {
    color: var(--white-color);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.6;
    transition: 0.3s ease;
}

.footer .footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 2px;
}

/* =========================
   CONTACT
========================= */

.footer .footer-contact li {
  display: flex;
    gap: 14px;
}
.footer .footer-contact li svg{
    width: 20px;
    color: var(--white-color);
}

.footer .footer-contact span {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 4px;
}

/* =========================
   BOTTOM
========================= */

.footer .footer-bottom {
    border-top: 1px solid var(--white-color);
    padding: 28px 0px;
    text-align: center;
}

.footer .footer-bottom p {
    color: var(--white-color);
    font-size: 16px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .footer .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .footer .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 100px 0px 60px;
    }

    .footer .footer-logo {
        width: 150px;
    }

    .footer .footer-about p,
    .footer-col ul li a,
    .footer-col ul li p {
        font-size: 16px;
    }

    .footer .footer-col h3 {
        font-size: 24px;
    }
}


.itinerary-section {
    padding: 90px 0;
    background: #fff;
}

.itinerary-section .itinerary-wrapper {
    display: grid;
    grid-template-columns: 1fr 700px;
    gap: 40px;
    align-items: start;
}
.itinerary-section .itinerary-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--secondary-color);
}

/* TIMELINE */
.itinerary-section .timeline {
    position: relative;
}

.itinerary-section .timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    border-left: 2px dotted #bfbfbf;
}

.itinerary-section .timeline-item {
    position: relative;
    padding-left: 85px;
    margin-bottom: 18px;
}

.itinerary-section .timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
    font-size: 14px;
    color: var(--white-color);
}

.itinerary-section .timeline-dot.number {
    background: var(--secondary-color);
    color: var(--white-color);
    border: none;
}

.itinerary-section .timeline-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--primary-color);
    font-weight: 600;
}

.itinerary-section .timeline-content p {
    margin-bottom: 0px;
    color: var(--secondary-color-dark);
    font-size: 14px;
}

.itinerary-section .timeline-content span {
    display: block;
   
    margin-bottom: 0px;
}

.itinerary-section .timeline-content a {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: none;
}

/* DETAIL */
.itinerary-section .timeline-detail {
    display: none;
    margin-top: 20px;
}

.itinerary-section .timeline-detail.active {
    display: block;
}

.itinerary-section .detail-image img {
    width: 100%;
    border-radius: 10px;
    height: 180px;
    object-fit: cover;
}

.itinerary-section .detail-text {
    margin: 18px 0;
    line-height: 1.7;
}

.itinerary-section .detail-btn {
    display: inline-block;
    border: 2px solid var(--secondary-color);
    padding: 12px 24px;
    border-radius: 40px;
    color: var(--secondary-color);
    font-weight: 700;
    transition: 0.3s ease;
    margin-top: 10px;
}

.itinerary-section .detail-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.itinerary-section .close-detail {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    cursor: pointer;
    color: var(--secondary-color);
}

/* MAP */


/* RESPONSIVE */
@media (max-width: 992px) {

    .itinerary-section .itinerary-wrapper {
        grid-template-columns: 1fr;
    }

    .itinerary-section .itinerary-map {
        order: -1;
    }
}

@media (max-width: 767px) {

    .itinerary-section {
        padding: 70px 0;
    }

    .itinerary-section .timeline-item {
        padding-left: 60px;
    }

    .itinerary-section .timeline-content h3 {
        font-size: 22px;
    }
}

