
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;400&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700&family=Montserrat:wght@400;600;700&family=Raleway:wght@400;600;700&display=swap');

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

:root{
    --gradient-top: linear-gradient(
        0deg,
        rgba(15, 35, 86, 0) 0%,
        rgba(22, 24, 19, 0.22) 36.98%,
        rgba(22, 24, 19, 0.47) 70.83%,
        rgba(22, 24, 19, 0.76) 100%
      );
    --gradient-bottom: linear-gradient(
        180deg,
        rgba(0, 32, 55, 0) 0%,      
        rgba(0, 32, 55, 0.4) 40%,   
        rgba(0, 32, 55, 0.7) 70%,   
        #002037 100%                
      );
    --sphere-gradient-one: radial-gradient(50% 50% at 20% 25%, #686868 0%, #403F3F 35%, #222222 70%, #000000 100%);
    --sphere-gradient-two: radial-gradient(51.04% 51.04% at 18.94% 26.18%, #686868 0%, #403F3F 36.98%, #222222 70.83%, #000000 100%);
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'poppins' sans-serif;
    background: #002037;
    overflow-x: hidden;
}

p{
    font-family: 'poppins';
}

.moving-icon{
    animation: animate 3s linear infinite;
}

.moving-icon-right{
    animation: animate 3s linear infinite;
    right:10px;
    position: absolute;
}

@keyframes animate{
    0%{
        transform: translate(-11px, 0);
    }
    50%{
        transform: translate(-0px, -11px);
    }
    100%{
        transform: translate(-11px, 0);
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 20px;
    transition: background 0.3s, color 0.3s;
    background: transparent;
    color: white;
}

/* Pure 3-Column Grid: Left | Center (Logo) | Right */
.navbar-flex {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    gap: 0;
    width: 100%;
    height: 60px;
}

/* Left Column: Navigation Links (constrained, no wrap) */
.links-left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 6px;
    overflow: hidden;
    min-width: 0;
    padding-right: 12px;
}

/* Center Column: Logo (fixed width column, always visible) */
.logo-center {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0;
    z-index: 10;
    pointer-events: auto;
}

/* Right Column: Navigation Links (constrained, no wrap) */
.links-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 6px;
    overflow: hidden;
    min-width: 0;
    padding-left: 12px;
}

.navbar-search-item {
    margin-left: 12px;
    display: flex;
    align-items: center;
}

.navbar-search-status {
    margin-left: 12px;
    font-size: 13px;
    color: #ffe066;
    min-height: 18px;
}

#navbar-search-form {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
    transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

#navbar-search-form:focus-within {
    border-color: rgba(230, 194, 0, 0.85);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

#navbar-search,
#navbar-search-input {
    width: 160px;
    max-width: 40vw;
    padding: 6px 6px 6px 6px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: #fff;
    outline: none;
    transition: width 0.25s ease;
    min-width: 100px;
}

#navbar-search::placeholder,
#navbar-search-input::placeholder {
    color: rgba(255, 255, 255, 0.85);
}

#navbar-search:focus,
#navbar-search-input:focus {
    width: 210px;
}

#navbar-search-clear {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    cursor: pointer;
    padding: 2px 4px;
    line-height: 1;
    flex-shrink: 0;
}

#navbar-search-clear:hover {
    color: #e6c200;
}

#navbar-search-go {
    display: none;
}

.navbar #navbar-search-form .search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}

/* Search highlight */
.search-highlight {
    background: #ffe066;
    color: #002037;
    border-radius: 4px;
    padding: 0 2px;
}

/* Link Items General */
.link-item {
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    white-space: nowrap;
}

.link-item a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    font-family: 'poppins';
    transition: color 0.3s ease;
    display: inline-block;
}

.link-item a:hover {
    color: #e6c200;
}

/* Auth trigger button (if auto-injected) */
.user-btn-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.1);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, border 0.2s ease;
}

.user-btn-inline:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.45);
}

.user-btn-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.user-btn-label {
    font-size: 14px;
    font-weight: 600;
}

/* Modern OAuth Modal */
.auth-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: rgba(0, 16, 32, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 2000;
}

.auth-modal.open {
    opacity: 1;
    visibility: visible;
}

.auth-backdrop {
    position: absolute;
    inset: 0;
}

.auth-dialog {
    position: relative;
    width: min(420px, 92vw);
    background: #ffffff;
    color: #002037;
    border-radius: 20px 20px 0 0;
    padding: 28px 24px 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    transform: translateY(110%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(.22,1,.36,1), opacity 0.25s ease;
    overflow: hidden;
}

.auth-modal.open .auth-dialog {
    transform: translateY(0);
    opacity: 1;
}

@media (min-width: 769px) {
    .auth-modal {
        align-items: center;
    }
    .auth-dialog {
        border-radius: 20px;
        transform: translateY(12px) scale(0.98);
    }
    .auth-modal.open .auth-dialog {
        transform: translateY(0) scale(1);
    }
}

.auth-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: rgba(0,0,0,0.04);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 20px;
    color: #002037;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.auth-close:hover {
    background: rgba(0, 32, 55, 0.08);
    transform: scale(1.05);
}

.auth-header {
    margin-bottom: 18px;
}

.auth-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    color: #6b7b8c;
    margin: 0 0 6px 0;
}

.auth-title {
    margin: 0;
    font-size: 24px;
    color: #002037;
    font-weight: 700;
}

.auth-buttons {
    display: grid;
    gap: 12px;
    margin-bottom: 12px;
}

.auth-btn {
    width: 100%;
    border: 1px solid #e5e8ec;
    border-radius: 12px;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, border 0.2s ease;
    background: #fff;
    color: #002037;
}

.auth-btn img {
    width: 20px;
    height: 20px;
}

.auth-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #d7dce2;
}

.auth-btn.google {
    border-color: #e2e8f0;
}

.auth-btn.facebook {
    background: linear-gradient(90deg, #1877f2, #0d62d1);
    color: #fff;
    border: none;
}

.auth-btn.facebook:hover {
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.35);
}

.auth-assurance {
    margin: 0;
    font-size: 13px;
    color: #51606f;
    line-height: 1.5;
}
  
.navbar.bg {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #002037;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
  
.navbar a {
    color: inherit;
    transition: color 0.3s;
}
  
.navbar.bg a {
    color: #002037;
}

.navbar.bg #navbar-search-form {
    border-color: rgba(0, 32, 55, 0.2);
    background: rgba(0, 32, 55, 0.06);
}

.navbar.bg #navbar-search-form:focus-within {
    border-color: rgba(230, 194, 0, 0.6);
    background: rgba(0, 32, 55, 0.12);
}

.navbar.bg #navbar-search-input,
.navbar.bg #navbar-search {
    color: #002037;
}

.navbar.bg #navbar-search-input::placeholder,
.navbar.bg #navbar-search::placeholder {
    color: rgba(0, 32, 55, 0.6);
}

.navbar.bg #navbar-search-clear {
    color: rgba(0, 32, 55, 0.8);
}

.navbar.bg #navbar-search-clear:hover {
    color: #e6c200;
}

.navbar.bg .search-icon {
    color: rgba(0, 32, 55, 0.7) !important;
}

.navbar.bg .user-btn-inline {
    border-color: rgba(0, 32, 55, 0.2);
    background: rgba(0, 32, 55, 0.06);
    color: #002037;
}

.navbar.bg .user-btn-inline:hover {
    background: rgba(0, 32, 55, 0.15);
    border-color: rgba(0, 32, 55, 0.4);
}

.navbar.bg .user-btn-avatar {
    background: rgba(0, 32, 55, 0.12);
    color: #002037;
}

.logo{
    height: 60px;
    margin-top: 10px;
    border-radius: 50%;
    padding: 3px;
    max-width: 100%;
    height: auto;
}

/* Responsive: Mobile Stack */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
    }
    .navbar-flex {
        gap: 0;
        grid-template-columns: 1fr 70px 1fr;
    }
    .logo-center {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }
    .links-left, .links-right {
        gap: 4px;
    }
    .link-item a {
        padding: 4px 6px;
        font-size: 14px;
    }
    #navbar-search,
    #navbar-search-input {
        width: 110px;
        min-width: 80px;
    }
    #navbar-search:focus,
    #navbar-search-input:focus {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 8px 10px;
    }
    .navbar-flex {
        gap: 0;
        grid-template-columns: 1fr 60px 1fr;
    }
    .logo-center {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    .links-left, .links-right {
        gap: 2px;
    }
    .link-item a {
        padding: 3px 5px;
        font-size: 12px;
    }
    #navbar-search,
    #navbar-search-input {
        width: 90px;
        min-width: 70px;
        font-size: 12px;
    }
    #navbar-search:focus,
    #navbar-search-input:focus {
        width: 120px;
    }
    .navbar-search-item {
        margin-left: 6px;
    }
}
.hero-section{
    font-family: 'Poppins';
    width:100%;
    height:100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#fff;
    overflow: hidden;
}

.hero-section-content {
    position: relative;
    z-index: 2;
    transform: translateZ(0);
    will-change: transform;
}
.background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1
}

.background-image{
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transform: translateZ(0);  /* Enable GPU acceleration */
    will-change: transform;
}

.background::before, .background::after{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
}

.background::before{
    top: 0;
    left: 0;
    background: var(--gradient-top);
}

.background::after{
    bottom: 0;
    left: 0;
    background: var(--gradient-bottom);
}

.slider-grid{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.grid-item{
    width: 100%;
    height: 100%;
    background: #002037;
    opacity: 1;
    transition: .5s;
    pointer-events: none;
}

.grid-item.hide{
    opacity: 0;
}

.hero-section-title{
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 80px;
    text-align: center;
    text-transform: capitalize;
    font-weight: bold;
}

.hero-section-small-text {
    font-size: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    color: #f0f0f0;
    margin-bottom: 8px;
    font-style: italic;
}

.hero-section-sub-heading{
    text-align: center;
    text-transform: capitalize;
    margin: 20px 0;
    font-size: 20px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 0;
    padding: 12px 28px;
    background: #e6c200;
    color: #ffffff;
    font-family: 'poppins';
    font-size: 16px;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    width: fit-content;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}
  
.hero-btn:hover {
    background: #003c78;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

.hero-btn-alt {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.hero-btn-alt:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #e6c200;
    border-color: rgba(230, 194, 0, 0.6);
}

.scroll-down-icon{
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    height: 40px;
    animation: down ease 1s infinite;
}

@keyframes down{
    from{ bottom: 10%; }
    to{ bottom: 8%; }
}

/* About Section */
.about-section {
    position: relative;
    width: 100%;
    padding: 80px 10vw;
    color: #fff;
}

/* Learn More Button */
.learn-more-btn {
    display: block;
    margin: 30px auto 0;
    color: #e6c200;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 500;
    width: fit-content;
    transition: all 0.3s ease;
    text-align: center;
}

/* Marine Life Section */
.marine-life-section {
    position: relative;
    width: 100%;
    padding: 80px 10vw 100px;  /* Added more bottom padding */
    color: #fff;
}
.section-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 15px;
    position: relative;
    z-index: 10;  /* Ensure title is above other elements */
}
.section-para {
    width: 50%;
    min-width: 300px;
    display: block;
    margin: 0 auto 30px;
    text-align: center;
    opacity: 0.7;
    line-height: 1.6;
    position: relative;
    z-index: 10;  /* Ensure paragraph is above other elements */
}

/* Tours/Marine Life Container */
.tours-container {
    position: relative;
    width: 100%;
    max-width: 1200px;  /* Limit maximum width */
    height: 600px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 20px;
    margin: 60px auto 0;  /* Center the container */
}

.tour-card:nth-child(2) {
    grid-row: span 2;
}

.tour-card:last-child {
    grid-column: span 2;
}

.tour-card {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;  /* Align text to bottom */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
    z-index: 1;  /* Image layer */
}

.tour-card:hover .tour-img {
    opacity: 0.8;
    transform: scale(1.1);
}

.tour-body {
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    width: 100%;
    position: relative;
    z-index: 2;  /* Text above image */
}

.tour-name {
    color: #fff;
    margin-left: 20px;
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 5px;
}

.tour-action {
    color: #fff;
    margin-left: 30px;
    font-size: 14px;
    position: relative;
    opacity: 0.8;
}

.tour-action::before {
    content: '→';
    position: absolute;
    left: -15px;
    top: 0px;
    font-size: 16px;
}

/* Responsive */
@media screen and (max-width: 996px) {
    .tours-container {
        height: 900px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    
    .tour-card:last-child {
        grid-column: span 1;
    }
    
    .tour-card:nth-last-child(3) {
        grid-row: span 2;
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-para {
        width: 100%;
    }
    
    .tours-container {
        height: auto;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }
    
    .tour-card {
        grid-row: auto !important;
        grid-column: auto !important;
        height: 400px;
    }
}

.services {
    padding: 100px 60px 120px;
    background: #002037;
}

.section-title {
    font-family: 'poppins';
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: 'poppins';
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 60px;
}

.swiper {
    padding: 90px 30px 70px;
    position: relative;
    width: 100%;
    max-width: 1000px;  /* Control visible area */
    margin: 0 auto;
    overflow: hidden !important;  /* CRITICAL: Hide overflowing cards */
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px !important; 
    transition: all 0.3s ease;
}

.service-card {
    width: 100% !important;
    max-width: 350px !important;  /* 🔥 CARD WIDTH - Add !important to force */
    height: 100% !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0.4;  /* Side cards more faded */
    transform: scale(0.85);  /* Side cards smaller */
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.swiper-slide-active .service-card {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.service-card img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    flex-shrink: 0;
}

.service-card h3 {
    font-family: 'Montserrat';
    font-size: 22px;  
    font-weight: 600;
    margin: 20px 20px 10px;  
    color: #fff;
}

.service-card p {
    font-family: 'Montserrat';
    font-size: 15px;  
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    padding: 0 20px 20px;  
    flex-grow: 1;
}

/* Pagination dots */
.swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 40px;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    transition: all 0.3s;
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    background: #e6c200 !important;
    width: 30px !important;
    border-radius: 5px !important;
}

/* Navigation arrows */
.swiper-button-prev,
.swiper-button-next {
    color: #fff !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    transition: all 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    transform: scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-button-prev {
    left: -10px !important;
}

.swiper-button-next {
    right: -10px !important;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .services {
        padding: 80px 40px 100px;
    }
    
    .swiper {
        padding: 60px 20px 50px;
        max-width: 900px;
    }
}

@media screen and (max-width: 768px) {
    .services {
        padding: 60px 20px 80px;
    }
    
    .swiper {
        padding: 50px 20px 40px;
        max-width: 100%;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px !important;
        height: 40px !important;
    }
    
    .service-card img {
        height: 70%;
    }
    
    .swiper-button-prev {
        left: 0 !important;
    }
    
    .swiper-button-next {
        right: 0 !important;
    }
}

.find-us {
    padding: 50px 0;
    margin-bottom: 300px;
  }
  
  .find-us .container {
    max-width: 1200px;
    margin: 0 auto;   /* centers the section */
    padding: 0 40px;  /* adds margin left & right */
  }
  
  .find-us h2 {
    font-family: 'Poppins';
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #ffffff;
  }
  
  .find-us-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
  }
  
  #map {
    flex: 1 1 60%;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  }
  
  .directions-info {
    flex: 1 1 35%;
    background: rgba(255, 255, 255, 0.2); /* translucent white */
    backdrop-filter: blur(10px);          /* frosted glass blur */
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    color: #ffffff;  
  }
  
  .directions-info h3 {
    font-family: 'Poppins';
    margin-bottom: 15px;
    color: #f0c20a;
  }
  
  .directions-info p {
    font-family: 'Poppins';
    margin-bottom: 12px;
    line-height: 1.6;
  }
  
  #get-directions-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background: #FFD60A;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  #get-directions-btn:hover {
    background: #f0c20a;
  }
  

.bg-circle-2{
    z-index: -1;
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--sphere-gradient-two);
    left: -125px;
    bottom: -100;
}

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

        body {
            font-family: 'Poppins', sans-serif;
            background: #002037;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Placeholder content to show footer at bottom */
        .demo-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        /* ENHANCED FOOTER */
        footer {
            width: 100%;
            background: linear-gradient(180deg, #001a2e 0%, #000d1a 100%);
            color: #fff;
            padding: 60px 10vw 20px;
            position: relative;
            overflow: hidden;
        }

        /* Decorative wave at top of footer */
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23002037' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
            background-size: cover;
            transform: translateY(-99%);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section {
            display: flex;
            flex-direction: column;
        }

        .footer-section h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #e6c200;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: #e6c200;
            border-radius: 2px;
        }

        .footer-logo-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 15px;
            border: 3px solid #e6c200;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-size: 14px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: #e6c200;
            transform: translateX(5px);
        }

        .footer-links a::before {
            content: '→';
            margin-right: 8px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .footer-links a:hover::before {
            opacity: 1;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            fill: #e6c200;
            flex-shrink: 0;
        }

        /* Social Media Section */
        .social-media {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
        }

        .social-link:hover {
            background: #e6c200;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(230, 194, 0, 0.4);
        }

        .social-icon {
            width: 20px;
            height: 20px;
            fill: white;
        }

        /* Newsletter */
        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 14px;
            outline: none;
            transition: all 0.3s;
        }

        .newsletter-input:focus {
            border-color: #e6c200;
            background: rgba(255, 255, 255, 0.1);
        }

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

        .newsletter-btn {
            padding: 12px 25px;
            background: #e6c200;
            color: #002037;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
        }

        .newsletter-btn:hover {
            background: #ffd700;
            transform: translateY(-2px);
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 25px;
            list-style: none;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: #e6c200;
        }

        /* Responsive */
        @media screen and (max-width: 768px) {
            footer {
                padding: 40px 20px 20px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 10px;
            }
        }
/*tabview*/
@media screen and (max-width: 996px) {
    .link-item{
        margin: 0 10px;
    }
    .hero-section-title{
        font-size: 60px;
    }
    .tours-container{
        height: 900px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    .tour-card:last-child{
        grid-column: span 1;
    }
    .tour-card:nth-last-child(3){
        grid-row: span 2;
    }
    .travel-grid{
        columns: 2;
    }
    .book-now-img{
        width: 40%;
    }
    .footer-text{
        font-size: 16px;
    }
    .services {
        padding: 80px 40px 100px;
    }
    .swiper {
        padding: 40px 100px 30px;
    }
}

/*Mobile view*/
@media screen and (max-width: 768px) {
    .navbar{
        height: auto;
    }
    .link-item{
        margin-top: 80px;
        text-align: center;
    }
    .link-item:nth-child(3){
        margin: -50px -30px 0 -30px;
    }
    .link-item a{
        padding: 10px;
        margin: auto;
        display: block;
    }
    .section-title{
        font-size: 50px;
    }
    .hero-section-sub-heading{
        font-size: 16px;
    }
    .section-para{
        width: 100%;
    }
    .tours-container{
        height: auto;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }
    .tour-card{
        grid-row: auto !important;
        grid-column: auto !important;
        height: 400px;
    }
    .travel-grid{
        columns: 1;
    }
    .bg-circle{
        display: none;
    }
    .book-section{
        height: auto;
        padding: 80px 10vw;
    }
    .bg-circle-2{
        z-index: -2;
    }
    .book-now-img{
        width: 100%;
        opacity: 0.5 !important;
    }
    .book-content{
        width: 100%;
        z-index: 2;
        text-align: center;
    }
    .book-now-title, .book-now-text{
        width: 100%;
    }
    .services {
        padding: 60px 20px 80px;
    }
    .swiper {
        padding: 40px 70px 30px;
    }
    .swiper-button-prev,
    .swiper-button-next {
        width: 45px !important;
        height: 45px !important;
    }
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 20px !important;
    }
    .swiper-button-prev {
        left: 10px !important;
    }
    .swiper-button-next {
        right: 10px !important;
    }
    .service-card {
        max-width: 100%;
    }
    .service-card img {
        height: 180px;
    }
}

@media screen and (max-width: 480px) {
    .swiper {
        padding: 30px 60px 20px;
    }
    .swiper-button-prev {
        left: 5px !important;
    }
    .swiper-button-next {
        right: 5px !important;
    }
}
.floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;  /* Don't block clicks */
    z-index: 0;  /* Behind content but visible */
    overflow: hidden;
}

/* Base style for all floating icons */
.floating-icon {
    position: absolute;
    opacity: 0.15;  /* Subtle appearance */
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* Individual icon animations */
.floating-icon.whale {
    width: 80px;
    height: 80px;
    top: 15%;
    left: -100px;
    animation: swim-right 25s infinite;
}

.floating-icon.shark {
    width: 70px;
    height: 70px;
    top: 60%;
    right: -100px;
    animation: swim-left 30s infinite;
    animation-delay: 5s;
}

.floating-icon.fish1 {
    width: 50px;
    height: 50px;
    top: 35%;
    left: -80px;
    animation: swim-diagonal 20s infinite;
    animation-delay: 3s;
}

.floating-icon.fish2 {
    width: 45px;
    height: 45px;
    top: 75%;
    right: -80px;
    animation: swim-left 22s infinite;
    animation-delay: 8s;
}

.floating-icon.turtle {
    width: 60px;
    height: 60px;
    top: 45%;
    left: -90px;
    animation: swim-slow 35s infinite;
    animation-delay: 12s;
}

.floating-icon.jellyfish {
    width: 55px;
    height: 55px;
    top: 25%;
    right: -85px;
    animation: float-down 28s infinite;
    animation-delay: 6s;
}

/* Animation: Swim from left to right */
@keyframes swim-right {
    0% {
        left: -100px;
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
    100% {
        left: calc(100% + 100px);
        transform: translateY(0) rotate(0deg);
    }
}

/* Animation: Swim from right to left */
@keyframes swim-left {
    0% {
        right: -100px;
        transform: translateY(0) rotateY(180deg);
    }
    50% {
        transform: translateY(-40px) rotateY(180deg) rotate(-5deg);
    }
    100% {
        right: calc(100% + 100px);
        transform: translateY(0) rotateY(180deg);
    }
}

/* Animation: Diagonal swimming */
@keyframes swim-diagonal {
    0% {
        left: -100px;
        top: 35%;
        transform: rotate(15deg);
    }
    50% {
        top: 25%;
        transform: rotate(-10deg);
    }
    100% {
        left: calc(100% + 100px);
        top: 35%;
        transform: rotate(15deg);
    }
}

/* Animation: Slow swimming */
@keyframes swim-slow {
    0% {
        left: -100px;
        transform: translateY(0) rotate(5deg);
    }
    25% {
        transform: translateY(-20px) rotate(-5deg);
    }
    75% {
        transform: translateY(20px) rotate(5deg);
    }
    100% {
        left: calc(100% + 100px);
        transform: translateY(0) rotate(-5deg);
    }
}

/* Animation: Floating down */
@keyframes float-down {
    0% {
        right: -100px;
        top: 25%;
        transform: rotate(0deg);
    }
    50% {
        top: 35%;
        transform: rotate(10deg);
    }
    100% {
        right: calc(100% + 100px);
        top: 25%;
        transform: rotate(0deg);
    }
}

/* Responsive: Hide on mobile for performance */
@media screen and (max-width: 768px) {
    .floating-icons {
        display: none;
    }
}

/* AI Itinerary Modal */
.itinerary-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2200;
    font-family: 'Poppins', sans-serif;
}

.itinerary-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 16, 32, 0.65);
    backdrop-filter: blur(6px);
}

.itinerary-modal__dialog {
    position: relative;
    width: min(780px, 92vw);
    max-height: 90vh;
    overflow: auto;
    background: #0d2c4b;
    color: #f4f8ff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
    border: 1px solid rgba(230, 194, 0, 0.2);
}

.itinerary-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.itinerary-modal__close:hover {
    transform: scale(1.05);
    background: rgba(230, 194, 0, 0.16);
}

.itinerary-modal__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    color: #bcd3ff;
    margin: 0 0 6px 0;
}

.itinerary-modal__title {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
}

.itinerary-modal__subtitle {
    margin: 6px 0 18px;
    color: #d8e3f5;
    line-height: 1.5;
}

.itinerary-form {
    display: grid;
    gap: 14px;
}

.itinerary-form__row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.itinerary-form__label,
.itinerary-form legend {
    font-weight: 600;
    color: #f8f9fb;
}

.itinerary-form select,
.itinerary-form input[type="number"],
.itinerary-form input[type="text"],
.itinerary-form input[type="email"],
.itinerary-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.05);
    color: #f4f8ff;
    font-size: 15px;
}

.itinerary-form select option {
    color: #f8f9fb;
}

.itinerary-form__choices {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: #e8f0ff;
}

.itinerary-form__choices--chips {
    gap: 10px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    cursor: pointer;
    transition: border 0.2s, background 0.2s;
}

.chip input {
    accent-color: #e6c200;
}

.chip:hover {
    border-color: rgba(230, 194, 0, 0.6);
    background: rgba(230, 194, 0, 0.08);
}

.itinerary-form__hint {
    margin: 4px 0 0;
    font-size: 13px;
    color: #c1cde0;
}

.itinerary-form__submit {
    margin-top: 4px;
    padding: 12px 18px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #e6c200, #ffdf66);
    color: #002037;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

.itinerary-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.28);
}

.itinerary-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
}

.spinner {
    width: 26px;
    height: 26px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: #e6c200;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.itinerary-result {
    margin-top: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    padding: 14px 16px;
    color: #f6f8fb;
    line-height: 1.6;
    white-space: pre-line;
}

.itinerary-result h4 {
    margin-top: 0;
}

@media (max-width: 640px) {
    .itinerary-modal__dialog {
        width: 95vw;
        padding: 22px 18px;
    }
    .itinerary-form__choices {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --- Floating Chatbot --- */
.chatbot {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2000;
    font-family: inherit;
}

.chatbot__toggle {
    background: linear-gradient(135deg, #f4c700, #f09a00);
    color: #0d2c4b;
    border: none;
    border-radius: 999px;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.chatbot__toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.chatbot__icon svg {
    width: 22px;
    height: 22px;
}

.chatbot__panel {
    position: absolute;
    right: 0;
    bottom: 60px;
    width: 320px;
    background: #0d2c4b;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.chatbot__panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.chatbot__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.chatbot__title {
    color: #f8f9fb;
    font-weight: 700;
    font-size: 15px;
}

.chatbot__subtitle {
    color: #bcd3ff;
    font-size: 12px;
}

.chatbot__close {
    border: none;
    background: rgba(255,255,255,0.08);
    color: #f8f9fb;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
}

.chatbot__messages {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 360px;
    overflow-y: auto;
    background: rgba(0,0,0,0.15);
}

.chatbot__message {
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #e8f0ff;
    max-width: 90%;
    word-wrap: break-word;
}

.chatbot__message--user {
    align-self: flex-end;
    background: linear-gradient(135deg, #f4c700, #f09a00);
    color: #0d2c4b;
}

.chatbot__message--bot {
    align-self: flex-start;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
}

.chatbot__form {
    display: flex;
    gap: 8px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.chatbot__form input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.06);
    color: #f8f9fb;
}

.chatbot__form button {
    background: #f4c700;
    color: #0d2c4b;
    border: none;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 700;
    cursor: pointer;
    min-width: 64px;
}

.chatbot__form button:disabled,
.chatbot__form input:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 520px) {
    .chatbot {
        right: 12px;
        bottom: 12px;
    }
    .chatbot__panel {
        width: calc(100vw - 24px);
        right: 0;
    }
}

/* Marine Life Modal Styles */
.marine-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease-in-out;
}

.marine-modal.active {
    display: block;
}

.marine-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.marine-modal-content {
    position: relative;
    max-width: 800px;
    max-height: 90vh;
    margin: 5vh auto;
    background: linear-gradient(135deg, #0a2540 0%, #002037 100%);
    border-radius: 20px;
    padding: 40px;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(230, 194, 0, 0.3);
    animation: slideUp 0.4s ease-out;
}

.marine-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(230, 194, 0, 0.2);
    border: 2px solid #e6c200;
    color: #e6c200;
    font-size: 32px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
    font-weight: 300;
}

.marine-modal-close:hover {
    background: #e6c200;
    color: #002037;
    transform: rotate(90deg);
}

.marine-modal-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(230, 194, 0, 0.3);
}

#marineModalBody h2 {
    color: #e6c200;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 3px solid #e6c200;
    padding-bottom: 10px;
}

#marineModalBody h3 {
    color: #bcd3ff;
    font-size: 22px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
}

#marineModalBody p {
    color: #f6f8fb;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

#marineModalBody ul {
    color: #f6f8fb;
    font-size: 16px;
    line-height: 1.8;
    margin-left: 25px;
    margin-bottom: 15px;
}

#marineModalBody li {
    margin-bottom: 8px;
}

#marineModalBody strong {
    color: #e6c200;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .marine-modal-content {
        margin: 3vh 20px;
        padding: 30px 25px;
        max-height: 94vh;
    }

    .marine-modal-image {
        max-height: 250px;
        margin-bottom: 20px;
    }

    #marineModalBody h2 {
        font-size: 26px;
    }

    #marineModalBody h3 {
        font-size: 20px;
    }

    #marineModalBody p,
    #marineModalBody ul {
        font-size: 15px;
    }

    .marine-modal-close {
        width: 40px;
        height: 40px;
        font-size: 28px;
        top: 10px;
        right: 10px;
    }
}

/* Add pointer cursor to tour cards */
.tour-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-action {
    cursor: pointer;
}