.glass-panel {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark .glass-panel {
	background: rgba(30, 35, 40, 0.7);
	border-color: rgba(255, 255, 255, 0.1);
}

.text-glow {
	text-shadow: 0 0 15px rgba(10, 106, 156, 0.3);
}

.wave-bottom {
	clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.infinite-scroll {
	display: flex;
	width: calc(250px * 10);
	animation: scroll 30s linear infinite;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(calc(-250px * 5));
	}
}

.material-symbols-outlined {
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ============ Sea Vibe Media Sections ============ */

/* Boat Inside Section - Grid with overlay */
.media-grid {
    display: grid;
    gap: 1.5rem;
}

.media-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 106, 156, 0.2);
}

.media-card img,
.media-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.media-card:hover img,
.media-card:hover video {
    transform: scale(1.08);
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 81, 121, 0.7) 0%, rgba(10, 106, 156, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.media-card:hover .media-overlay {
    opacity: 1;
}

.media-label {
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Boat Outside Section - Large showcase */
.showcase-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.showcase-main {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    aspect-ratio: 16/10;
    box-shadow: 0 30px 60px rgba(0, 81, 121, 0.15);
}

.showcase-main img,
.showcase-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.showcase-container:hover .showcase-main img,
.showcase-container:hover .showcase-main video {
    transform: scale(1.05);
}

.showcase-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thumbnail {
    width: 100%;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: #0a6a9c;
    transform: scale(1.02);
}

.thumbnail img,
.thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floaters Section - Carousel effect */
.floaters-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: carousel-scroll 30s linear infinite;
}

.carousel-item {
    min-width: 280px;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 81, 121, 0.1);
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: translateY(-8px);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-280px * 4 - 1.5rem * 4));
    }
}

.carousel-track:hover {
    animation-play-state: paused;
}

/* Music Section - Video Grid */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 9/12;
    cursor: pointer;
    group: "video-group";
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-card:hover video {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border-radius: 24px;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-icon::after {
    content: '▶';
    color: #0a6a9c;
    font-size: 24px;
    margin-left: 4px;
}

.video-card:hover .play-button {
    background: rgba(0, 0, 0, 0.5);
}

.video-card:hover .play-icon {
    transform: scale(1.2);
    background: #0a6a9c;
}

.video-card:hover .play-icon::after {
    color: white;
}

/* Sea Wave Decoration */
.wave-decoration {
    position: relative;
    padding: 2rem 0;
}

.wave-text {
    font-size: 120px;
    font-weight: 900;
    color: rgba(0, 81, 121, 0.08);
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .showcase-container {
        grid-template-columns: 1fr;
    }

    .showcase-thumbnails {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .thumbnail {
        min-width: 100px;
        height: 100px;
    }

    .carousel-item {
        min-width: 200px;
    }

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

    .wave-text {
        font-size: 60px;
        letter-spacing: 4px;
    }
}

/* Floating particles effect */
@keyframes float-up {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-80px) translateX(20px);
        opacity: 0;
    }
}

.floating-bubble {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(10, 106, 156, 0.3);
    border-radius: 50%;
    animation: float-up 4s ease-in infinite;
}

/* ============ Navigation & Header ============ */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-brand img {
    height: 65px !important;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #005179;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}



@media (max-width: 768px) {

    .hamburger-menu {
        display: flex;
    }

    header nav {
        display: none;
        position: absolute;
        top: 80px;
        right: 0;
        left: 0;
        background: white;
        flex-direction: column-reverse !important;
        align-items: flex-start;
        gap: 0 !important;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 40;
    }

    header nav.active {
        display: flex !important;
    }

    header nav a {
        width: 100%;
        padding: 0.75rem 0 !important;
        border: none !important;
    }
}
    header nav {
        position: absolute;
        top: 80px;
        right: 0;
        left: 0;
        background: white;
        flex-direction: column-reverse !important;
        align-items: flex-start;
        gap: 0 !important;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 40;
    }

    header nav.active {
        max-height: 400px;
    }

    header nav a {
        padding: 0.75rem 0 !important;
        border: none !important;
    }
}

/* ============ Boat Outside Enhancement ============ */
.showcase-main {
    aspect-ratio: 16/9 !important;
}

/* ============ Floaters Static Layout ============ */
.floaters-carousel {
    background: rgba(10, 106, 156, 0.02);
    padding: 2rem;
    border-radius: 24px;
}

.carousel-track {
    animation: none !important;
    justify-content: center;
    flex-wrap: wrap;
    width: auto !important;
    display: flex !important;
    gap: 1.5rem !important;
}

.carousel-item {
    min-width: auto !important;
    width: 200px;
    animation: none !important;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .carousel-item {
        width: 150px;
    }
}

/* ============ Music Grid Enhancement ============ */
.music-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
}

.video-card {
    box-shadow: 0 10px 30px rgba(0, 81, 121, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-card:hover {
    box-shadow: 0 20px 50px rgba(0, 81, 121, 0.25);
    transform: translateY(-12px);
}

/* ============ Location Section ============ */
.location-container {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 81, 121, 0.15);
    aspect-ratio: 16/9;
}

.location-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* ============ FAQ Enhancement ============ */
.faq-item {
    animation: fadeIn 0.5s ease;
}

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

details {
    animation: fadeIn 0.6s ease;
}

/* ============ Footer Enhancement ============ */
.footer-section {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logos img {
    height: 50px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.footer-logos img:hover {
    filter: brightness(1);
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: #40484f;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 14px;
    color: #40484f;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 81, 121, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #005179;
    font-size: 18px;
}

.social-icon:hover {
    background: #005179;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 81, 121, 0.1);
    font-size: 13px;
    color: #40484f;
    margin-top: 1rem;
}

    .glass {
                background: rgba(255, 255, 255, 0.15);
                backdrop-filter: blur(12px);
            }

            .hero-overlay {
                background:
                    linear-gradient(to left,
                        rgba(0, 0, 0, 0.7),
                        rgba(0, 0, 0, 0.3));
            }

            .floating {
                animation: floating 4s ease-in-out infinite;
            }

            @keyframes floating {

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

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

