/* ==================================
   RESET & GLOBAL
================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    overflow: hidden;
}

/* ==================================
   VARIABLES
================================== */

:root {

    --primary: #0D8BFF;
    --secondary: #1FD6FF;
    --dark: #071826;
    --wood: #8B5A2B;
    --wood-light: #C28A42;
    --white: #ffffff;
}

/* ==================================
   BODY
================================== */

body {

    font-family: 'Poppins', sans-serif;

    background: var(--dark);

    color: var(--white);

    overflow-x: hidden;
}

/* ==================================
   NAVBAR
================================== */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    transition: .4s ease;
}

.nav-container {

    max-width: 1400px;

    margin: auto;

    padding: 18px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.nav-menu {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-wrap: nowrap;

}

.nav-link {

    text-decoration: none;

    color: #fff;

    padding: 10px 18px;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255, 255, 255, .08);

    transition: .4s;
}

.nav-link:hover {

    background:
        rgba(31, 214, 255, .15);

    border:
        1px solid rgba(31, 214, 255, .4);

    transform:
        translateY(-3px);
}

.desktop-book-btn {

    white-space: nowrap;

    flex-shrink: 0;
}

.navbar.scrolled {

    background:
        rgba(7, 24, 38, .75);

    backdrop-filter: blur(20px);

    border-bottom:
        1px solid rgba(255, 255, 255, .08);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .2);
}

.hamburger {

    display: none;

    flex-direction: column;

    gap: 6px;

    cursor: pointer;
}

.hamburger span {

    width: 28px;

    height: 3px;

    background: #fff;

    border-radius: 5px;

    transition: .4s;
}

/* ==================================
   RESPONSIVE
================================== */

@media (max-width:991px) {

    .navbar {

        background:
            rgba(7, 24, 38, .85);

        backdrop-filter: blur(20px);
    }

    .nav-container {

        padding: 15px 20px;

        justify-content: flex-end;
    }

    .desktop-book-btn {

        display: none;
    }

    .hamburger {

        display: flex;
    }

    .nav-menu {

        position: fixed;

        top: 75px;
        right: -100%;

        width: 280px;

        height: calc(100vh - 75px);

        flex-direction: column;

        align-items: stretch;

        gap: 15px;

        padding: 25px;

        background:
            rgba(7, 24, 38, .96);

        backdrop-filter: blur(25px);

        transition: .4s;

        overflow-y: auto;
    }

    .nav-menu.active {

        right: 0;
    }

    .nav-link {

        width: 100%;

        text-align: center;

        padding: 15px;
    }
}

@media (max-width:768px) {

    .hero-content {

        flex-direction: column;
    }

    .why-grid,
    .package-grid,
    .activity-grid,
    .destination-grid,
    .testimonial-grid,
    .route-grid {

        grid-template-columns: 1fr !important;
    }

    .footer-container {

        grid-template-columns: 1fr;

        text-align: center;
    }

    .footer-about img {

        margin: auto auto 20px;
    }
}

/* ==========================
   HERO SECTION
========================== */

.hero {
    min-height: 100vh;

    background:
        linear-gradient(135deg,
            #071826,
            #0A2D52,
            #0D8BFF);

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    padding-top: 100px;
}

.hero-overlay {

    position: absolute;
    width: 100%;
    height: 100%;

    background:
        radial-gradient(circle at top right,
            rgba(255, 255, 255, .12),
            transparent 50%);

}

/* ==========================
   HERO CONTENT
========================== */

.hero-content {

    width: 100%;
    max-width: 1500px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 80px;
    padding-top: 100px;
    position: relative;
    z-index: 2;
}

/* ==========================
   LOGO
========================== */

.logo {

    /* width: 550px; */

    animation: float 4s ease-in-out infinite;

    filter:
        drop-shadow(0 20px 40px rgba(0, 0, 0, .5));
}

/* ==========================
   GLASS CARD
========================== */

.glass {

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 30px;

    padding: 50px;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, .3);
}

/* ==========================
   TEXT
========================== */

.tagline {

    color: #1FD6FF;

    letter-spacing: 2px;

    text-transform: uppercase;

    font-size: 14px;
}

.hero-right h1 {

    font-family: 'Cinzel', serif;

    color: white;

    font-size: 60px;

    margin-top: 15px;

    line-height: 1.2;
}

.hero-right h1 span {

    color: #1FD6FF;
}

.hero-right p {

    color: #d8eaff;

    margin-top: 25px;

    font-size: 18px;

    line-height: 1.8;
}

/* ==========================
   BUTTONS
========================== */

.hero-buttons {

    margin-top: 35px;

    display: flex;
    gap: 20px;
}

.btn-primary {

    text-decoration: none;

    color: white;

    padding: 15px 35px;

    border-radius: 50px;

    background:
        linear-gradient(135deg,
            #1FD6FF,
            #0D8BFF);

    font-weight: 600;

    transition: .4s;
}

.btn-primary:hover {

    transform: translateY(-5px);

    box-shadow:
        0 10px 30px rgba(13, 139, 255, .6);
}

/* ==========================
   WOOD BUTTON
========================== */

.btn-wood {

    text-decoration: none;

    color: white;

    padding: 15px 35px;

    border-radius: 50px;

    background:
        linear-gradient(180deg,
            #C28A42,
            #8B5A2B);

    border: 2px solid #6A3F18;

    font-weight: 600;

    transition: .4s;
}

.btn-wood:hover {

    transform: translateY(-5px);

    background:
        linear-gradient(180deg,
            #D99B4A,
            #9B5D2D);
}

/* ==========================
   FLOAT ANIMATION
========================== */

@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px) {

    .hero-content {

        flex-direction: column;
        text-align: center;
    }

    .logo {

        width: 350px;
    }

    .hero-right h1 {

        font-size: 40px;
    }
}

/* ==========================
   WHY CHOOSE US
========================== */

.why-us {

    padding: 120px 8%;

    background:
        linear-gradient(180deg,
            #071826,
            #082742);
}

/* TITLE */

.section-title {

    text-align: center;

    max-width: 800px;

    margin: auto;
}

.section-title span {

    color: #1FD6FF;

    font-size: 14px;

    letter-spacing: 3px;

    font-weight: 600;
}

.section-title h2 {

    color: #fff;

    font-size: 48px;

    margin-top: 15px;

    font-family: 'Cinzel', serif;
}

.section-title p {

    color: #c7d8e7;

    margin-top: 20px;

    line-height: 1.8;
}

/* GRID */

.why-grid {

    margin-top: 70px;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;
}

/* CARD */

.glass-card {

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter:
        blur(20px);

    border:
        1px solid rgba(255, 255, 255, .15);

    border-radius: 25px;

    padding: 40px 30px;

    text-align: center;

    transition: .4s;

    position: relative;

    overflow: hidden;
}

.glass-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 15px 40px rgba(13, 139, 255, .3);
}

/* ICON */

.icon-box {

    width: 90px;
    height: 90px;

    margin: auto;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 40px;

    background:
        linear-gradient(135deg,
            rgba(31, 214, 255, .2),
            rgba(13, 139, 255, .3));

    border:
        1px solid rgba(255, 255, 255, .15);
}

/* TEXT */

.why-card h3 {

    color: white;

    margin-top: 25px;

    font-size: 24px;
}

.why-card p {

    color: #c7d8e7;

    margin-top: 15px;

    line-height: 1.8;
}

/* =========================
   ABOUT HERO
========================= */

.about-hero {
    position: relative;
    min-height: 500px;
    background: url('../images/about/about.avif') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
    overflow: hidden;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #fff;
}

.about-hero-content span {
    display: inline-block;
    color: #4cc9f0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 18px;
    line-height: 1.8;
}

/* =========================
   COMPANY INTRO
========================= */

.company-intro {
    padding: 100px 7%;
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.intro-content span {
    color: #00a8e8;
    font-weight: 600;
    letter-spacing: 2px;
}

.intro-content h2 {
    font-size: 40px;
    margin: 15px 0 20px;
    color: #0d1b2a;
}

.intro-content p {
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
}

.btn-wood {
    /* display: inline-block; */
    padding: 14px 30px;
    background: linear-gradient(135deg, #00a8e8, #0077b6);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: .3s;
}

.btn-wood:hover {
    transform: translateY(-3px);
}

/* =========================
   MISSION & VISION
========================= */

.mission-vision {
    padding: 80px 7%;
    background: #f8fbff;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-glass-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

.about-glass-card:hover {
    transform: translateY(-8px);
}

.about-glass-card h3 {
    margin-bottom: 15px;
    color: #0d1b2a;
}

.about-glass-card p {
    color: #666;
    line-height: 1.8;
}

/* =========================
   SECTION TITLE
========================= */

.about-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.about-section-title span {
    color: #00a8e8;
    letter-spacing: 2px;
    font-weight: 600;
}

.about-section-title h2 {
    font-size: 40px;
    margin-top: 10px;
    color: #f8fbff;
}

/* =========================
   WHY CHOOSE US
========================= */

.about-why {
    padding: 100px 7%;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.about-icon-box {
    font-size: 40px;
    margin-bottom: 20px;
}

.about-why-grid .glass-card {
    text-align: center;
}

/* =========================
   STATS
========================= */

.about-stats-section {
    padding: 90px 7%;
    background: linear-gradient(135deg, #00a8e8, #0077b6);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-stat-box {
    text-align: center;
    color: #fff;
}

.about-stat-box h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.about-stat-box p {
    font-size: 17px;
}

/* =========================
   TEAM
========================= */

.about-team-section {
    padding: 100px 7%;
    background: #fff;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

.about-team-card:hover {
    transform: translateY(-8px);
}

.about-team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.about-team-card h3 {
    margin-top: 20px;
    color: #0d1b2a;
}

.about-team-card p {
    color: #777;
    margin: 10px 0 25px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .intro-grid,
    .mv-grid,
    .about-stats-grid,
    .about-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero-content h1 {
        font-size: 40px;
    }
}

/* ==========================
   DESTINATIONS SECTION
========================== */

.destinations {
    padding: 120px 8%;
    background: linear-gradient(180deg, #071826, #0a2d52);
}

/* ==========================
   FILTER BUTTONS
========================== */

.destination-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 50px 0;
}

.filter-btn {
    border: none;
    cursor: pointer;
    padding: 12px 25px;
    border-radius: 50px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: .3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #1FD6FF, #0D8BFF);
}

/* ==========================
   GRID
========================== */

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* ==========================
   CARD
========================== */

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    cursor: pointer;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: .4s;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 139, 255, .25);
}

.destination-card:hover img {
    transform: scale(1.08);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    background: linear-gradient(transparent,
            rgba(0, 0, 0, .85));
}

.destination-overlay h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 8px;
}

.destination-category {
    color: #1FD6FF;
    margin-bottom: 15px;
}

.destination-footer {
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.rating {
    color: #FFD700;
}

/* Shine Effect */

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .15),
            transparent);
    transition: .8s;
    z-index: 2;
}

.destination-card:hover::before {
    left: 100%;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:768px) {

    .destinations {
        padding: 80px 20px;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .destination-card {
        height: 350px;
    }

    .destination-overlay h3 {
        font-size: 22px;
    }

    .destination-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* ==================================
   PLACE DETAILS HERO
================================== */

.place-details-hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.place-details-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 15s linear infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12);
    }
}

.place-details-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .80));
}

.place-details-content {
    position: relative;
    z-index: 2;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #fff;
    padding: 20px;
}

.place-category {
    padding: 12px 28px;
    border-radius: 50px;

    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .15);

    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
}

.place-details-content h1 {
    font-size: 75px;
    line-height: 1.1;
    margin-bottom: 15px;

    text-shadow: 0 0 20px rgba(31, 214, 255, .5);

    animation: titleFloat 4s ease-in-out infinite;
}

.place-details-content p {
    font-size: 22px;
    color: #d8eaff;
}

@keyframes titleFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ==================================
   MAIN SECTION
================================== */

.place-details-section {
    padding: 100px 8%;
    background: #f8fbff;
}

/* ==================================
   COMMON CARDS
================================== */

.place-info-card,
.place-side-card {
    background: #fff;
    border-radius: 30px;
    padding: 35px;
    margin-bottom: 30px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: .4s;
}

.place-info-card:hover,
.place-side-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(13, 139, 255, .15);
}

/* ==================================
   CARD TITLES
================================== */

.place-info-card h2,
.place-side-card h3 {
    position: relative;
    color: #071826;
    font-size: 30px;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.place-info-card h2::after,
.place-side-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 80px;
    height: 4px;

    border-radius: 20px;

    background: linear-gradient(90deg,
            #1FD6FF,
            #0D8BFF);
}

/* ==================================
   TEXT
================================== */

.place-info-card p {
    color: #475569;
    line-height: 2;
}

.place-info-card ul {
    padding-left: 20px;
}

.place-info-card li {
    margin-bottom: 10px;
    color: #475569;
}

/* ==================================
   GALLERY ROW
================================== */

.place-gallery-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* ==================================
   GALLERY
================================== */

.place-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.place-gallery img {
    width: 100%;
    height: 380px;
    object-fit: cover;

    border-radius: 25px;

    cursor: pointer;
    transition: .5s;
}

.place-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .20);
}

/* ==================================
   DESTINATION INFO CARD
================================== */

.place-side-card {
    background: linear-gradient(135deg,
            #1FD6FF,
            #0D8BFF);

    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.place-side-card h3 {
    color: #fff;
}

.place-side-card h3::after {
    background: #fff;
}

.place-side-card p {
    color: rgba(255, 255, 255, .95);
    line-height: 1.9;
    margin-bottom: 12px;
    font-size: 16px;
}

/* ==================================
   RESPONSIVE
================================== */

@media (max-width:991px) {

    .place-details-hero {
        height: 70vh;
    }

    .place-details-content h1 {
        font-size: 45px;
    }

    .place-details-content p {
        font-size: 16px;
    }

    .place-gallery-row {
        grid-template-columns: 1fr;
    }

    .place-gallery {
        grid-template-columns: 1fr;
    }

    .place-gallery img {
        height: 260px;
    }
}

@media (max-width:576px) {

    .place-details-hero {
        height: 60vh;
    }

    .place-details-content h1 {
        font-size: 32px;
    }

    .place-category {
        font-size: 12px;
    }

    .place-info-card,
    .place-side-card {
        padding: 25px;
    }

    .place-info-card h2,
    .place-side-card h3 {
        font-size: 24px;
    }

    .place-gallery img {
        height: 220px;
    }
}

/* =====================================
   ACTIVITIES SECTION
===================================== */

.activities {

    position: relative;

    padding: 120px 8%;

    overflow: hidden;

    background:
        linear-gradient(180deg,
            #0a2d52,
            #071826);
}

/* VIDEO STYLE BACKGROUND */

.activities::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        url('../images/activities/activity-bg.jpg') center/cover;

    opacity: .15;

    z-index: 1;
}

.video-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(rgba(7, 24, 38, .85),
            rgba(7, 24, 38, .95));

    z-index: 2;
}

.activities-content {

    position: relative;

    z-index: 3;
}

/* GRID */

.activity-grid {

    margin-top: 70px;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 30px;
}

/* CARD */

.activity-card {

    position: relative;

    overflow: hidden;

    border-radius: 30px;

    height: 380px;

    background:
        rgba(255, 255, 255, .06);

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255, 255, 255, .1);

    transition: .5s;
}

/* IMAGE */

.activity-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .8s;
}

/* INFO */

.activity-info {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 25px;

    background:
        linear-gradient(transparent,
            rgba(0, 0, 0, .9));
}

.activity-icon {

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 30px;

    margin-bottom: 15px;

    background:
        rgba(255, 255, 255, .1);

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255, 255, 255, .15);

    animation: floatIcon 3s ease infinite;
}

.activity-info h3 {

    color: white;

    font-size: 26px;

    margin-bottom: 10px;
}

.activity-info p {

    color: #d8eaff;

    line-height: 1.7;
}

/* HOVER */

.activity-card:hover {

    transform:
        translateY(-12px);

    box-shadow:
        0 25px 50px rgba(13, 139, 255, .35);
}

.activity-card:hover img {

    transform: scale(1.12);
}

@keyframes floatIcon {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* =====================================
   ACTIVITIES RESPONSIVE
===================================== */

@media(max-width:991px) {

    .activity-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .activities {

        padding: 80px 20px;
    }

    .activity-grid {

        grid-template-columns: 1fr;
    }

    .activity-card {

        height: 320px;
    }

    .activity-info h3 {

        font-size: 22px;
    }

    .activity-icon {

        width: 55px;
        height: 55px;

        font-size: 24px;
    }
}

.activity-card::before {

    content: '';

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .15),
            transparent);

    transition: .8s;

    z-index: 2;
}

.activity-card:hover::before {

    left: 100%;
}

/* ==================================
   ACTIVITY DETAILS HERO
================================== */

.activity-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.activity-hero img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.activity-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .75));
}

.activity-hero-content {
    position: relative;
    z-index: 2;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #fff;

    padding: 20px;
    gap: 10px;
}

.activity-details-type {
    padding: 10px 22px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, .15);

    margin-bottom: 0;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.activity-hero-content h1 {
    font-size: 72px;
    text-transform: uppercase;
    margin: 0;

    line-height: 1.1;

    text-shadow:
        0 0 10px rgba(31, 214, 255, .4),
        0 0 25px rgba(31, 214, 255, .3);

    animation: activityTitleFloat 2s ease-in-out infinite;
}

@keyframes activityTitleFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

.activity-hero-content p {
    margin: 0;

    font-size: 20px;

    color: #d8eaff;
}

/* ==================================
   ACTIVITY DETAILS SECTION
================================== */

.activity-details {
    padding: 100px 8%;

    background: linear-gradient(180deg,
            #071826,
            #0A2D52);

    display: grid;
    grid-template-columns: 2fr 1fr;

    gap: 40px;
}

/* ==================================
   LEFT SIDE CARDS
================================== */

.activity-glass-box,
.activity-price-box {
    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .1);

    border-radius: 30px;

    padding: 35px;

    margin-bottom: 30px;
}

.activity-glass-box h2,
.activity-price-box h2 {
    color: #fff;

    margin-bottom: 20px;

    font-size: 32px;
}

.activity-glass-box p {
    color: #d8eaff;

    line-height: 2;
}

.activity-price {
    color: #1FD6FF;

    font-size: 30px;

    font-weight: 700;
}

/* ==================================
   BOOKING BOX
================================== */

.activity-booking-box {
    position: sticky;

    top: 100px;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .1);

    border-radius: 30px;

    padding: 35px;
}

.activity-booking-box h3 {
    color: #fff;

    margin-bottom: 25px;

    font-size: 30px;
}

.activity-booking-box input {
    width: 100%;

    height: 55px;

    margin-bottom: 15px;

    border: none;

    outline: none;

    padding: 0 20px;

    border-radius: 12px;

    background: rgba(255, 255, 255, .08);

    color: #fff;
}

.activity-booking-box input::placeholder {
    color: #c7d8e7;
}

.activity-booking-box button {
    width: 100%;

    height: 55px;

    border: none;

    border-radius: 50px;

    cursor: pointer;

    color: #fff;

    font-weight: 600;

    background: linear-gradient(180deg,
            #C28A42,
            #8B5A2B);

    transition: .3s;
}

.activity-booking-box button:hover {
    transform: translateY(-3px);
}

/* ==================================
   RESPONSIVE
================================== */

@media (max-width:991px) {

    .activity-details {
        grid-template-columns: 1fr;
    }

    .activity-booking-box {
        position: relative;
        top: 0;
    }

    .activity-hero-content h1 {
        font-size: 42px;
    }

    .activity-hero-content p {
        font-size: 16px;
    }
}

@media (max-width:576px) {

    .activity-hero {
        height: 70vh;
    }

    .activity-hero-content h1 {
        font-size: 32px;
    }

    .activity-price {
        font-size: 34px;
    }

    .activity-glass-box,
    .activity-price-box,
    .activity-booking-box {
        padding: 25px;
    }
}

/* =====================================
   PACKAGE PAGE HERO
===================================== */

.package-hero {
    position: relative;
    min-height: 70vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 120px 20px 80px;

    background:
        linear-gradient(rgba(7, 24, 38, .75),
            rgba(7, 24, 38, .75)),
        url('../images/packages/about.avif');

    background-size: cover;
    background-position: center;
}

.package-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top right,
            rgba(255, 255, 255, .08),
            transparent 50%);
}

.package-hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
}

.package-hero-content span {
    display: inline-block;

    color: #1FD6FF;

    font-size: 14px;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 20px;
}

.package-hero-content h1 {
    color: #fff;

    font-size: 60px;

    line-height: 1.2;

    margin-bottom: 20px;

    font-family: 'Cinzel', serif;
}

.package-hero-content p {
    color: #d8eaff;

    font-size: 18px;

    line-height: 1.8;
}

/* =====================================
   PACKAGE LIST SECTION
===================================== */

.package-list-section {
    padding: 100px 8%;

    background:
        linear-gradient(180deg,
            #082742,
            #071826);
}

.package-list-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}

/* =====================================
   PACKAGE CARD
===================================== */

.package-list-card {
    position: relative;

    height: 500px;

    border-radius: 30px;

    overflow: hidden;

    cursor: pointer;

    transition: .5s;
}

.package-list-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .8s;
}

.package-list-card:hover img {
    transform: scale(1.15);
}

.package-list-card:hover {
    transform: translateY(-12px);

    box-shadow:
        0 25px 50px rgba(13, 139, 255, .35);
}

/* =====================================
   PACKAGE OVERLAY
===================================== */

.package-list-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 30px;

    background:
        linear-gradient(transparent,
            rgba(0, 0, 0, .85));
}

/* =====================================
   BADGE
===================================== */

.package-list-badge {
    position: absolute;

    top: 25px;
    right: 25px;

    padding: 10px 18px;

    border-radius: 50px;

    color: #fff;

    background:
        #d99b4a;

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255, 255, 255, .15);
}

/* =====================================
   TEXT
===================================== */

.package-list-overlay h3 {
    color: #ffffff;

    font-size: 30px;

    margin-bottom: 12px;
}

.package-list-overlay p {
    color: #d8eaff;

    line-height: 1.8;
}

/* =====================================
   FOOTER
===================================== */

.package-list-footer {
    margin-top: 25px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.package-list-footer span {
    color: #1FD6FF;

    font-size: 28px;

    font-weight: 700;
}

/* =====================================
   TABLET
===================================== */

@media (max-width:992px) {

    .package-list-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .package-hero-content h1 {
        font-size: 42px;
    }
}

/* =====================================
   MOBILE
===================================== */

@media (max-width:768px) {

    .package-hero {
        min-height: 55vh;

        padding: 120px 20px 60px;
    }

    .package-hero-content h1 {
        font-size: 34px;
    }

    .package-hero-content p {
        font-size: 15px;
    }

    .package-list-section {
        padding: 80px 20px;
    }

    .package-list-grid {
        grid-template-columns: 1fr;
    }

    .package-list-card {
        height: 420px;
    }

    .package-list-overlay h3 {
        font-size: 24px;
    }

    .package-list-footer {
        flex-direction: column;

        gap: 15px;

        align-items: flex-start;
    }

    .package-list-footer span {
        font-size: 24px;
    }
}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width:576px) {

    .package-hero-content h1 {
        font-size: 28px;
    }

    .package-hero-content span {
        font-size: 12px;
    }

    .package-list-card {
        height: 380px;
    }

    .package-list-overlay {
        padding: 20px;
    }

    .package-list-overlay h3 {
        font-size: 22px;
    }

    .package-list-overlay p {
        font-size: 14px;
    }

    .package-list-badge {
        font-size: 12px;

        padding: 8px 14px;
    }

    .package-list-footer span {
        font-size: 22px;
    }
}

/* =========================
   PACKAGE DETAILS HERO
========================= */

.package-details-hero {
    position: relative;
    height: 86vh;
    overflow: hidden;
}

.package-details-hero img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.package-details-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(rgba(0, 0, 0, .65),
            #0098ff6b);
}

.package-details-content {
    position: relative;
    z-index: 2;

    max-width: 1000px;

    margin: auto;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.package-details-badge {
    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(20px);

    padding: 12px 25px;

    border-radius: 50px;

    color: #fff;
}

.package-details-content h1 {
    font-size: 60px;

    color: #fff;

    margin: 20px 0;
}

.package-details-content p {
    color: #d8eaff;

    font-size: 18px;

    line-height: 1.8;
}

.package-details-btn {
    margin-top: 25px;

    padding: 18px 40px;

    border-radius: 50px;

    text-decoration: none;

    color: #fff;

    background: linear-gradient(180deg,
            #C28A42,
            #8B5A2B);

    transition: .3s;
}

.package-details-btn:hover {
    transform: translateY(-3px);
}

/* =========================
   CONTENT
========================= */

.package-details-content-wrapper {
    padding: 35px 3%;

    background: #f8fbff;

    display: grid;
    grid-template-columns: 2fr 1fr;

    gap: 40px;
}

.package-details-left {
    display: flex;
    flex-direction: column;

    gap: 40px;
}

.package-details-right {
    position: relative;
}

.package-details-section {
    background: #fff;

    padding: 40px;

    border-radius: 25px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);
}

.package-details-section h2 {
    font-size: 34px;

    color: #0f172a;

    margin-bottom: 20px;
}

.package-details-section p {
    color: #64748b;

    line-height: 1.9;
}

/* =========================
   HIGHLIGHTS
========================= */

.package-details-highlights {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 30px;
}

.package-details-highlights div {
    background: #fff;

    border-radius: 18px;

    padding: 25px;

    text-align: center;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .08);
    color: black;
    font-weight: 600;
}

/* =========================
   BOOKING CARD
========================= */

.package-details-booking {
    background: linear-gradient(135deg,
            #0ea5e9,
            #0284c7);

    color: white;

    padding: 30px;

    border-radius: 25px;

    position: sticky;

    top: 100px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .15);
}

.package-details-booking h3 {
    font-size: 30px;

    margin-bottom: 25px;
}

.package-details-booking .form-group {
    margin-bottom: 15px;
}

.package-details-booking input,
.package-details-booking select {
    width: 100%;

    padding: 15px;

    border: none;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, .15);

    color: white;
}

.package-details-booking input::placeholder {
    color: rgba(255, 255, 255, .8);
}

/* =========================
   TRIP SUMMARY
========================= */

.package-trip-summary {
    margin: 25px 0;
}

.package-trip-item {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding: 12px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, .15);

    font-size: 14px;
}

.package-trip-item strong {
    color: #fff;
}

.package-trip-item span {
    color: rgba(255, 255, 255, .85);

    text-align: right;
}

/* =========================
   SUBMIT BUTTON
========================= */

.package-details-submit {
    display: inline-block;

    width: 100%;

    padding: 15px;

    background: #fff;

    color: #0284c7;

    text-decoration: none;

    border-radius: 50px;

    font-weight: 700;

    transition: .3s;

    border: none;

    cursor: pointer;
}

.package-details-submit:hover {
    transform: translateY(-4px);
}

/* =========================
   ITINERARY SECTION
========================= */

.package-itinerary-section {

    padding: 100px 7%;

    background: #f8fbff;

    position: relative;
}

.package-itinerary-section .section-title {

    text-align: center;

    margin-bottom: 60px;
}

/* TIMELINE */

.package-itinerary-section::before {

    content: "";

    position: absolute;

    top: 180px;
    left: 100px;

    width: 4px;

    height: calc(100% - 220px);

    background:
        linear-gradient(#0ea5e9,
            #0284c7);

    border-radius: 20px;
}

/* ITEM */

.package-timeline-item {

    position: relative;

    margin-bottom: 40px;

    padding-left: 150px;
}

/* DAY CIRCLE */

.package-day-number {

    position: absolute;

    left: 55px;
    top: 15px;

    width: 90px;
    height: 90px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #0ea5e9,
            #0284c7);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 700;

    font-size: 18px;

    box-shadow:
        0 10px 30px rgba(14, 165, 233, .35);

    z-index: 2;
}

/* CONTENT CARD */

.package-day-content {

    background: white;

    border-radius: 25px;

    padding: 30px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .08);

    transition: .4s;
}

.package-day-content:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 20px 40px rgba(2, 132, 199, .15);
}

.package-day-content h3 {

    font-size: 24px;

    color: #0f172a;

    margin-bottom: 15px;
}

.package-day-content p {

    color: #64748b;

    line-height: 1.9;
}

/* LOCATION ICON */

.package-day-content h3::before {

    content: "📍";

    margin-right: 8px;
}

/* MOBILE */

@media(max-width:768px) {

    .package-itinerary-section::before {

        left: 40px;
    }

    .package-timeline-item {

        padding-left: 90px;
    }

    .package-day-number {

        left: 0;

        width: 70px;
        height: 70px;

        font-size: 14px;
    }

    .package-day-content {

        padding: 20px;
    }

    .package-day-content h3 {

        font-size: 20px;
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

    .package-details-content-wrapper {
        grid-template-columns: 1fr;
    }

    .package-details-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-details-booking {
        position: relative;
        top: 0;
    }

    .package-details-content h1 {
        font-size: 42px;
    }
}

@media(max-width:768px) {

    .package-details-hero {
        height: 60vh;
        min-height: 450px;
    }

    .package-details-content h1 {
        font-size: 30px;
    }

    .package-details-highlights {
        grid-template-columns: 1fr;
    }

    .package-details-section {
        padding: 25px;
    }

    .package-details-booking {
        padding: 25px;
    }

    .package-day-card {
        flex-direction: column;
        text-align: center;
    }

    .package-day-number {
        margin: auto;

        width: 80px;
        height: 80px;

        min-width: 80px;

        font-size: 18px;
    }
}

@media(max-width:576px) {

    .package-details-content h1 {
        font-size: 26px;
    }

    .package-details-content p {
        font-size: 15px;
    }

    .package-details-badge {
        font-size: 12px;
    }
}

/* =====================================
   FERRY LIST
===================================== */

.ferry-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px;
}

.ferry-section-title {
    text-align: center;
    max-width: 800px;
    margin: auto;
    padding-top: 100px;
}

.ferry-section-title span {
    color: #1FD6FF;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
}

.ferry-section-title h2 {
    color: #fff;
    font-size: 48px;
    margin-top: 15px;
    font-family: 'Cinzel', serif;
}

.ferry-section-title p {
    color: #c7d8e7;
    margin-top: 20px;
    line-height: 1.8;
}

/* CARD */

.ferry-card {
    display: grid;
    grid-template-columns: 280px 1fr 220px;
    padding: 20px;
    gap: 25px;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .1);

    border-radius: 25px;

    overflow: hidden;

    transition: .4s;
}

.ferry-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(13, 139, 255, .25);
}

/* IMAGE */

.ferry-card-image img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
}

/* CONTENT */

.ferry-card-content {
    padding: 25px 0;
}

.ferry-card-content h3 {
    color: #fff;
    font-size: 28px;

    margin-bottom: 10px;
}

.ferry-route {
    color: #1FD6FF;

    font-size: 18px;

    margin-bottom: 15px;
}

.ferry-card-content p {
    color: #d8eaff;

    line-height: 1.8;

    margin-bottom: 20px;
}

/* FEATURES */

.ferry-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ferry-features span {
    background: rgba(255, 255, 255, .08);

    padding: 8px 14px;

    border-radius: 50px;

    color: #fff;

    font-size: 14px;
}

/* RIGHT SIDE */

.ferry-card-action {
    padding: 25px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    border-left: 1px solid rgba(255, 255, 255, .08);
}

.ferry-rating {
    color: #FFD700;

    font-size: 18px;

    margin-bottom: 15px;
}

.ferry-price {
    color: #1FD6FF;

    font-size: 34px;

    font-weight: 700;

    margin-bottom: 20px;
}

.ferry-price small {
    display: block;

    color: #d8eaff;

    font-size: 13px;

    font-weight: normal;
}

.ferry-book-btn {
    width: 100%;

    text-align: center;

    text-decoration: none;

    padding: 14px;

    border-radius: 50px;

    color: #fff;

    background: linear-gradient(135deg,
            #1FD6FF,
            #0D8BFF);
}

/* MOBILE */

@media(max-width:991px) {

    .ferry-card {
        grid-template-columns: 1fr;
    }

    .ferry-card-image {
        height: 250px;
    }

    .ferry-card-action {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }
}

/* ==========================
   HERO
========================== */

.ferry-details-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.ferry-details-hero img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.ferry-details-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .80));
}

.ferry-details-content {
    position: relative;
    z-index: 2;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    color: #fff;
}

.ferry-type-badge {
    padding: 12px 25px;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, .15);

    backdrop-filter: blur(20px);

    margin-bottom: 20px;
}

.ferry-details-content h1 {
    font-size: 60px;
    margin-bottom: 15px;
}

.ferry-details-content p {
    font-size: 20px;
    color: #d8eaff;
}

/* ==========================
   CONTENT
========================== */

.ferry-details-section {
    padding: 100px 8%;

    background: #f8fbff;

    display: grid;
    grid-template-columns: 2fr 1fr;

    gap: 40px;
}

/* CARD */

.ferry-info-card {
    background: #fff;

    padding: 40px;

    border-radius: 25px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);
}

.ferry-info-card h2 {
    margin-bottom: 20px;
}

.ferry-info-card p {
    line-height: 1.9;
    color: #64748b;
}

/* BOOKING */

.ferry-booking-card {
    background:
        linear-gradient(135deg,
            #0ea5e9,
            #0284c7);

    color: #fff;

    padding: 30px;

    border-radius: 25px;

    position: sticky;
    top: 100px;
}

.ferry-booking-card h3 {
    margin-bottom: 25px;
}

.ferry-summary {
    margin-bottom: 25px;
}

.ferry-summary-item {
    display: flex;

    justify-content: space-between;

    padding: 12px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, .15);
}

.ferry-summary-item span {
    text-align: right;
}

.ferry-price-box {
    background:
        rgba(255, 255, 255, .12);

    padding: 20px;

    border-radius: 15px;

    text-align: center;

    font-size: 34px;

    font-weight: 700;

    margin-bottom: 25px;
}

.ferry-price-box small {
    display: block;

    margin-top: 8px;

    font-size: 14px;

    font-weight: 400;
}

.ferry-book-btn {
    display: block;

    text-align: center;

    text-decoration: none;

    padding: 15px;

    border-radius: 50px;

    background: #fff;

    color: #0284c7;

    font-weight: 700;
}

/* MOBILE */

@media(max-width:991px) {

    .ferry-details-section {
        grid-template-columns: 1fr;
    }

    .ferry-booking-card {
        position: relative;
        top: 0;
    }

    .ferry-booking-card input,
    .ferry-booking-card select {
        width: 100%;

        padding: 14px;

        border: none;

        outline: none;

        border-radius: 12px;

        margin-bottom: 15px;

        background: rgba(255, 255, 255, .15);

        color: #fff;
    }

    .ferry-booking-card label {
        display: block;

        margin-bottom: 8px;

        color: #fff;
    }

    .ferry-booking-card input::placeholder {
        color: rgba(255, 255, 255, .8);
    }

    .ferry-details-content h1 {
        font-size: 42px;
    }
}

@media(max-width:768px) {

    .ferry-details-hero {
        height: 60vh;
    }

    .ferry-details-content h1 {
        font-size: 30px;
    }

    .ferry-info-card {
        padding: 25px;
    }
}

/* =====================================
   FERRY BOOKING SECTION
===================================== */

.ferry-booking-section {

    padding: 120px 8%;

    background:
        linear-gradient(180deg,
            #071826,
            #082742);
}

/* CONTAINER */

.ferry-booking-container {

    margin-top: 70px;

    display: grid;

    grid-template-columns:
        420px 1fr;

    gap: 40px;
}

/* FORM */

.ferry-booking-form {

    padding: 35px;

    position: relative;

    overflow: hidden;
}

.ferry-booking-form h3 {

    color: white;

    margin-bottom: 25px;

    font-size: 28px;
}

.ferry-booking-form::before {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    background:
        radial-gradient(rgba(31, 214, 255, .25),
            transparent);

    top: -100px;
    right: -100px;

    border-radius: 50%;
}

.form-group {

    margin-bottom: 20px;
}

.form-group label {

    display: block;

    color: #d8eaff;

    margin-bottom: 8px;
}

.form-group input,
.form-group select {

    width: 100%;

    padding: 15px;

    border: none;

    outline: none;

    border-radius: 15px;

    color: rgb(255, 191, 0);

    background:
        rgba(255, 255, 255, .08);

    border:
        1px solid rgba(255, 255, 255, .1);
}

.form-group input::placeholder {

    color: #b7c7d6;
}

.ferry-booking-btn {

    width: 100%;

    margin-top: 10px;

    cursor: pointer;

    border: none;
}

/* ROUTE GRID */

.ferry-route-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;
}

/* ROUTE CARD */

.ferry-route-card {

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255, 255, 255, .1);

    border-radius: 25px;

    padding: 30px;

    transition: .4s;
}

.ferry-route-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 20px 40px rgba(13, 139, 255, .3);
}

.ferry-route-card h3 {

    color: white;

    margin-bottom: 15px;

    font-size: 22px;
}

.ferry-route-card p {

    color: #d8eaff;

    margin-bottom: 15px;

    line-height: 1.7;
}

.ferry-route-card span {

    color: #1FD6FF;

    font-weight: 600;
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:1200px) {

    .ferry-booking-container {

        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .ferry-booking-section {

        padding: 80px 20px;
    }

    .ferry-route-grid {

        grid-template-columns: 1fr;
    }

    .ferry-booking-form {

        padding: 25px;
    }

    .ferry-route-card {

        padding: 25px;
    }

    .ferry-route-card h3 {

        font-size: 18px;
    }
}

/* =====================================
   TESTIMONIALS
===================================== */

.testimonials {

    padding: 120px 8%;

    background:
        linear-gradient(180deg,
            #082742,
            #071826);
}

.testimonial-grid {

    margin-top: 70px;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 30px;
}

.testimonial-card {

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255, 255, 255, .1);

    border-radius: 25px;

    padding: 35px;

    transition: .4s;
}

.testimonial-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 20px 40px rgba(13, 139, 255, .3);
}

.stars {

    font-size: 22px;

    margin-bottom: 20px;
}

.testimonial-card p {

    color: #d8eaff;

    line-height: 1.8;
}

.client {

    margin-top: 25px;
}

.client h4 {

    color: white;
}

.client span {

    color: #1FD6FF;
}

/* =====================================
   CONTACT CTA
===================================== */

.contact-cta {

    padding: 100px 8%;

    background:
        linear-gradient(180deg,
            #071826,
            #0A2D52);
}

.cta-glass {

    max-width: 1000px;

    margin: auto;

    text-align: center;

    padding: 60px;

    border-radius: 30px;

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255, 255, 255, .1);
}

.cta-glass h2 {

    color: white;

    font-size: 30px;

    margin-bottom: 20px;
}

.cta-glass p {

    color: #d8eaff;

    margin-bottom: 30px;
}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.whatsapp-btn {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: #25D366;

    display: flex;

    justify-content: center;
    align-items: center;

    color: white;

    font-size: 30px;

    z-index: 99999;

    box-shadow:
        0 10px 30px rgba(37, 211, 102, .4);

    animation:
        pulse 2s infinite;
}

@keyframes pulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, .7);
    }

    100% {
        box-shadow:
            0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* =====================================
   CONTACT CTA
===================================== */

.contact-cta {

    padding: 100px 8%;

    background:
        linear-gradient(180deg,
            #071826,
            #0A2D52);
}

.cta-glass {

    max-width: 1000px;

    margin: auto;

    text-align: center;

    padding: 60px;

    border-radius: 30px;

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255, 255, 255, .1);
}

.cta-glass h2 {

    color: white;

    font-size: 48px;

    margin-bottom: 20px;
}

.cta-glass p {

    color: #d8eaff;

    margin-bottom: 30px;
}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.whatsapp-btn {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: #25D366;

    display: flex;

    justify-content: center;
    align-items: center;

    color: white;

    font-size: 30px;

    z-index: 99999;

    box-shadow:
        0 10px 30px rgba(37, 211, 102, .4);

    animation:
        pulse 2s infinite;
}

@keyframes pulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, .7);
    }

    100% {
        box-shadow:
            0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* =====================================
   CONTACT CTA RESPONSIVE
===================================== */

@media (max-width: 768px) {

    .contact-cta {

        padding: 70px 20px;
    }

    .cta-glass {

        padding: 35px 25px;

        border-radius: 20px;
    }

    .cta-glass h2 {

        font-size: 30px;

        line-height: 1.3;
    }

    .cta-glass p {

        font-size: 15px;

        line-height: 1.8;

        margin-bottom: 25px;
    }

    .cta-buttons {

        flex-direction: column;

        gap: 15px;
    }

    .cta-buttons a {

        width: 100%;

        text-align: center;
    }

    .whatsapp-btn {

        width: 55px;
        height: 55px;

        right: 15px;
        bottom: 15px;

        font-size: 26px;
    }
}

@media (max-width: 480px) {

    .cta-glass {

        padding: 25px 20px;
    }

    .cta-glass h2 {

        font-size: 24px;
    }

    .cta-glass p {

        font-size: 14px;
    }

    .whatsapp-btn {

        width: 50px;
        height: 50px;

        font-size: 22px;
    }
}

/* =====================================
   FOOTER
===================================== */

.footer {

    background: #04111d;

    padding-top: 80px;
}

.footer-container {

    max-width: 1400px;

    margin: auto;

    padding: 0 8% 50px;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 50px;
}

.footer-about img {

    width: 180px;

    margin-bottom: 20px;
}

.footer-about p,
.footer-links p {

    color: #c7d8e7;

    line-height: 1.8;
}

.footer-links h3 {

    color: white;

    margin-bottom: 20px;
}

.footer-links a {

    display: block;

    color: #c7d8e7;

    text-decoration: none;

    margin-bottom: 12px;

    transition: .3s;
}

.footer-links a:hover {

    color: #1FD6FF;
}

.copyright {

    border-top:
        1px solid rgba(255, 255, 255, .08);

    text-align: center;

    padding: 25px;

    color: #8ca3b8;
}

/* =====================================
   FOOTER RESPONSIVE
===================================== */

@media (max-width: 992px) {

    .footer-container {

        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

}

@media (max-width: 768px) {

    .footer {

        padding-top: 60px;
    }

    .footer-container {

        grid-template-columns: 1fr;

        gap: 35px;

        padding: 0 20px 40px;

        text-align: center;
    }

    .footer-about img {

        width: 150px;

        margin: 0 auto 20px;

        display: block;
    }

    .footer-links h3 {

        margin-bottom: 15px;
    }

    .footer-links a {

        margin-bottom: 10px;
    }

    .copyright {

        padding: 20px 15px;

        font-size: 14px;

        line-height: 1.6;
    }

}

@media (max-width: 480px) {

    .footer-about img {

        width: 130px;
    }

    .footer-about p,
    .footer-links p,
    .footer-links a {

        font-size: 14px;

        line-height: 1.7;
    }

    .footer-links h3 {

        font-size: 18px;
    }

    .copyright {

        font-size: 13px;
    }

}

.copyright a {

    color: #1FD6FF;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;
}

.copyright a:hover {

    color: #ffffff;
}

@media(max-width:768px) {

    .copyright {

        line-height: 1.8;
    }

}

/* =====================================
   CONTACT HERO
===================================== */

.contact-hero {

    position: relative;

    min-height: 70vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;

    background:
        url('https://png.pngtree.com/thumb_back/fw800/background/20220720/pngtree-customer-support-online-laptop-banner-3d-render-assistance-helpdesk-videocall-photo-image_47664374.jpg') center/cover no-repeat;
}

.contact-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(7, 24, 38, .65),
            rgba(7, 24, 38, .85));
}

.contact-content {

    position: relative;
    z-index: 2;

    max-width: 850px;

    padding: 20px;
}

.contact-content span {

    display: inline-block;

    color: #1FD6FF;

    letter-spacing: 3px;

    font-size: 14px;

    margin-bottom: 20px;
}

.contact-content h1 {

    color: white;

    font-size: 60px;

    line-height: 1.2;

    margin-bottom: 20px;
}

.contact-content p {

    color: #d8eaff;

    font-size: 18px;

    line-height: 1.8;
}

/* =====================================
   CONTACT SECTION
===================================== */

.contact-section {

    padding: 120px 8%;

    background:
        linear-gradient(180deg,
            #071826,
            #0A2D52);

    display: grid;

    grid-template-columns:
        380px 1fr;

    gap: 40px;
}

/* =====================================
   CONTACT INFO
===================================== */

.contact-info {

    display: flex;

    flex-direction: column;

    gap: 25px;
}

.contact-card {

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255, 255, 255, .1);

    border-radius: 25px;

    padding: 30px;
}

.contact-card h3 {

    color: white;

    margin-bottom: 15px;

    font-size: 22px;
}

.contact-card p {

    color: #d8eaff;

    line-height: 1.8;
}

/* =====================================
   CONTACT FORM
===================================== */

.contact-form-box {

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255, 255, 255, .1);

    border-radius: 30px;

    padding: 40px;
}

.contact-form-box h2 {

    color: white;

    margin-bottom: 30px;

    font-size: 36px;
}

.contact-form-box form {

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.contact-form-box input,
.contact-form-box textarea {

    width: 100%;

    border: none;

    outline: none;

    padding: 16px 20px;

    border-radius: 15px;

    color: white;

    background:
        rgba(255, 255, 255, .08);

    border:
        1px solid rgba(255, 255, 255, .1);
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {

    color: #c7d8e7;
}

.contact-form-box textarea {

    resize: none;
}

.contact-form-box button {

    cursor: pointer;
}

/* =====================================
   GOOGLE MAP
===================================== */

.contact-map {

    width: 100%;

    height: 500px;

    overflow: hidden;
}

.contact-map iframe {

    width: 100%;
    height: 100%;

    border: none;
}

/* =====================================
   CTA BANNER
===================================== */

.contact-cta-banner {

    padding: 80px 20px;

    text-align: center;

    background:
        linear-gradient(135deg,
            #0A2D52,
            #071826);
}

.contact-cta-banner h2 {

    color: white;

    font-size: 42px;

    margin-bottom: 25px;
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:991px) {

    .contact-section {

        grid-template-columns: 1fr;
    }

    .contact-content h1 {

        font-size: 42px;
    }
}

@media(max-width:768px) {

    .contact-hero {

        min-height: 60vh;
    }

    .contact-content h1 {

        font-size: 32px;
    }

    .contact-content p {

        font-size: 15px;
    }

    .contact-section {

        padding: 80px 20px;
    }

    .contact-form-box {

        padding: 25px;
    }

    .contact-form-box h2 {

        font-size: 28px;
    }

    .contact-map {

        height: 350px;
    }

    .contact-cta-banner h2 {

        font-size: 28px;
    }
}

@media(max-width:480px) {

    .contact-content h1 {

        font-size: 28px;
    }

    .contact-card {

        padding: 20px;
    }

    .contact-form-box {

        padding: 20px;
    }

    .contact-map {

        height: 280px;
    }
}

/* =====================================
   BOOKING PAGE
===================================== */

.booking-page {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 120px 8%;

    background:
        url('../images/booking/booking-bg.jpg') center/cover no-repeat;
}

.booking-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(rgba(7, 24, 38, .75),
            rgba(7, 24, 38, .90));
}

.booking-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1400px;

    display: grid;

    grid-template-columns: 1fr 550px;

    gap: 60px;

    align-items: center;
}

/* LEFT */

.booking-left {

    color: white;
}

.booking-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, .12);

    margin-bottom: 25px;
}

.booking-left h1 {

    font-size: 64px;

    line-height: 1.1;

    margin-bottom: 20px;
}

.booking-left p {

    max-width: 600px;

    color: #d8eaff;

    line-height: 1.9;
}

/* FORM */

.booking-form {

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter: blur(25px);

    border:
        1px solid rgba(255, 255, 255, .1);

    border-radius: 30px;

    padding: 40px;
}

.booking-form h2 {

    color: white;

    margin-bottom: 25px;

    text-align: center;
}

.booking-form input,
.booking-form textarea {

    width: 100%;

    margin-bottom: 15px;

    padding: 16px 18px;

    border: none;

    outline: none;

    border-radius: 15px;

    background:
        rgba(255, 255, 255, .08);

    color: white;

    border:
        1px solid rgba(255, 255, 255, .08);
}

.booking-form textarea {

    resize: none;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {

    color: #d8eaff;
}

.booking-form button {

    width: 100%;

    height: 60px;

    border: none;

    cursor: pointer;

    border-radius: 50px;

    font-size: 16px;

    font-weight: 600;

    color: white;

    background:
        linear-gradient(135deg,
            #0ea5e9,
            #0284c7);

    transition: .3s;
}

.booking-form button:hover {

    transform: translateY(-3px);
}

/* MOBILE */

@media(max-width:991px) {

    .booking-container {

        grid-template-columns: 1fr;
    }

    .booking-left {

        text-align: center;
    }

    .booking-left h1 {

        font-size: 42px;
    }
}

@media(max-width:768px) {

    .booking-page {

        padding: 100px 20px;
    }

    .booking-form {

        padding: 25px;
    }

    .booking-left h1 {

        font-size: 32px;
    }
}

/* =========================
   BLOGS
========================= */

.travel-blog-section {

    padding: 100px 7%;

    /* background: #f8fbff; */
}

.travel-blog-list {

    display: flex;

    flex-direction: column;

    gap: 30px;
}

.travel-blog-card {

    display: grid;

    grid-template-columns: 380px 1fr;

    background: #fff;

    border-radius: 25px;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

    transition: .4s;
}

.travel-blog-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .12);
}

.travel-blog-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}

.travel-blog-content {

    padding: 35px;
}

.travel-blog-category {

    display: inline-block;

    padding: 8px 18px;

    border-radius: 30px;

    background: #e0f2fe;

    color: #0284c7;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 15px;
}

.travel-blog-content h3 {

    font-size: 30px;

    color: #0f172a;

    margin-bottom: 15px;
}

.travel-blog-content p {

    color: #64748b;

    line-height: 1.8;

    margin-bottom: 20px;
}

.travel-blog-meta {

    display: flex;

    gap: 25px;

    margin-bottom: 25px;

    color: #475569;
}

.travel-blog-btn {

    display: inline-block;

    padding: 12px 25px;

    background:
        linear-gradient(135deg,
            #0ea5e9,
            #0284c7);

    color: white;

    text-decoration: none;

    border-radius: 50px;
}

/* MOBILE */

@media(max-width:768px) {

    .travel-blog-card {

        grid-template-columns: 1fr;
    }

    .travel-blog-image {

        height: 250px;
    }

    .travel-blog-content {

        padding: 25px;
    }

    .travel-blog-content h3 {

        font-size: 22px;
    }

    .travel-blog-meta {

        flex-direction: column;

        gap: 10px;
    }
}

/* =========================
   BLOG DETAILS HERO
========================= */

.blog-details-hero {

    position: relative;

    height: 80vh;

    overflow: hidden;
}

.blog-details-hero img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.blog-details-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(rgba(0, 0, 0, .5),
            rgba(0, 0, 0, .8));
}

.blog-details-content {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    color: white;

    z-index: 2;

    padding: 20px;
}

.blog-category {

    padding: 10px 20px;

    border-radius: 30px;

    background:
        rgba(255, 255, 255, .15);

    margin-bottom: 20px;
}

.blog-details-content h1 {

    font-size: 60px;

    margin-bottom: 15px;
}

/* =========================
   CONTENT
========================= */

.blog-details-section {

    padding: 100px 7%;

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 40px;

    background: #f8fbff;
}

.blog-card {

    background: white;

    padding: 35px;

    border-radius: 25px;

    margin-bottom: 25px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);
}

.blog-card h2 {

    margin-bottom: 15px;

    color: #0f172a;
}

.blog-card p {

    line-height: 1.9;

    color: #64748b;
}

/* SIDEBAR */

.blog-side-card {

    background: linear-gradient(135deg, #1FD6FF, #0D8BFF);

    padding: 30px;

    border-radius: 25px;

    margin-bottom: 25px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);
}

.blog-side-card h3 {

    margin-bottom: 20px;
}

.blog-side-card p {

    margin-bottom: 10px;
}

/* =========================
   GALLERY
========================= */

.blog-gallery {

    padding: 100px 7%;

    background: white;
}

.blog-gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.blog-gallery-grid img {

    width: 100%;

    height: 280px;

    object-fit: cover;

    border-radius: 20px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px) {

    .blog-details-section {

        grid-template-columns: 1fr;
    }

    .blog-gallery-grid {

        grid-template-columns: repeat(2, 1fr);
    }

    .blog-details-content h1 {

        font-size: 40px;
    }
}

@media(max-width:768px) {

    .blog-gallery-grid {

        grid-template-columns: 1fr;
    }

    .blog-details-content h1 {

        font-size: 30px;
    }

    .blog-details-hero {

        height: 60vh;
    }
}