/* Ensure trip tags are visible in light mode */
/* Light mode trip tags */
.trip-meta .trip-duration,
.trip-highlights li {
    color: #333 !important;
    background: #f5f5f5;
    border-radius: 4px;
    padding: 2px 8px;
    margin-right: 4px;
    display: inline-block;
    font-size: 0.95em;
}

/* Remove overlay background in dark mode */
[data-theme="dark"] .trip-meta .trip-duration,
[data-theme="dark"] .trip-highlights li {
    color: var(--text-primary) !important;
    background: none !important;
}
.feature-tag,
.feature-label,
.feature-item,
.feature-list,
.feature-list span,
.feature-list li,
#booking-features .feature-tag,
#booking-features .feature-label,
#booking-features .feature-item,
#booking-features .feature-list,
#booking-features span,
#booking-features li {
    color: var(--text-primary) !important;
}
.feature-tag,
.feature-label,
.feature-item,
.feature-list,
.feature-list span,
.feature-list li {
    color: #111 !important;
}
#booking-features .feature-tag,
#booking-features .feature-label,
#booking-features .feature-item,
#booking-features .feature-list,
#booking-features span,
#booking-features li {
    color: #111 !important;
}
@media (max-width: 768px) {
    .footer-section h3 {
        display: block;
        width: 100%;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .footer-section ul {
        display: block;
        width: 100%;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
@media (max-width: 768px) {
    .footer-content,
    .footer-section,
    .footer-section h3,
    .footer-section ul,
    .footer-section ul li,
    .footer-logo,
    .footer-dolphin,
    .footer-turtle,
    .footer-fish,
    .contact-info,
    .contact-item,
    .social-links,
    .newsletter,
    .newsletter-form,
    .footer-bottom-content {
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
@media (max-width: 768px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-section {
        align-items: center;
        text-align: center;
        width: 100%;
        margin-bottom: 2rem;
    }
    .footer-section ul {
        padding-left: 0;
        text-align: center;
    }
    .footer-section ul li {
        display: block;
        text-align: center;
        margin: 0.5rem 0;
    }
    .footer-logo,
    .footer-dolphin,
    .footer-turtle,
    .footer-fish {
        justify-content: center;
        text-align: center;
        display: flex;
    }
    .contact-info,
    .social-links,
    .newsletter {
        align-items: center;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
}
#featured-trip-content .trip-description {
    color: #111 !important;
}
[data-theme="dark"] #featured-trip-content .trip-description {
    color: #e3f7ff !important;
}
/* Dark mode: make main content and blog text white for readability */
[data-theme="dark"] .main-content,
[data-theme="dark"] .trip-description,
[data-theme="dark"] .blog-post-content,
[data-theme="dark"] .blog-content,
[data-theme="dark"] .section-title,
[data-theme="dark"] .section-subtitle,
[data-theme="dark"] p,
[data-theme="dark"] .blog-grid .blog-excerpt {
    color: #e3f7ff !important;
}
[data-theme="dark"] .nav-menu.active {
    background: linear-gradient(180deg, #0d1b2a 0%, #274472 100%) !important;
    color: #e3f7ff;
}
[data-theme="dark"] .nav-menu.active .nav-link,
[data-theme="dark"] .nav-menu.active .lang-btn {
    color: #e3f7ff !important;
    background: transparent !important;
}
[data-theme="dark"] .nav-menu.active .nav-link.active,
[data-theme="dark"] .nav-menu.active .nav-link:hover {
    background: rgba(52, 152, 219, 0.2) !important;
    color: #90caf9 !important;
}
[data-theme="dark"] .nav-menu.active .lang-btn.active,
[data-theme="dark"] .nav-menu.active .lang-btn:hover {
    background: #1976d2 !important;
    color: #fff !important;
}
[data-theme="dark"] .hamburger .bar {
    background: #e3f7ff !important;
}
/* Dark mode for mobile menu sea background */
[data-theme="dark"] .nav-menu.active .menu-sea-bg {
    background: none;
}
[data-theme="dark"] .nav-menu.active .menu-waves path {
    fill: #1565c0;
    opacity: 0.7;
}
[data-theme="dark"] .nav-menu.active .menu-dolphin ellipse {
    fill: #1976d2;
}
[data-theme="dark"] .nav-menu.active .menu-dolphin path {
    fill: #0d47a1;
}
[data-theme="dark"] .nav-menu.active .menu-dolphin circle {
    fill: #fff;
    stroke: #0d47a1;
    stroke-width: 0.5;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}
/* Sea-themed mobile menu background */
.menu-sea-bg {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    overflow: visible;
    z-index: 1010;
}
.menu-waves {
    z-index: 1011;
    width: 100%;
    height: 40px;
    display: block !important;
    animation: waveMove 3s infinite linear;
}
@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-20px); }
}
.menu-dolphin {
    z-index: 1012;
    position: absolute;
    left: 60%;
    top: 10px;
    display: block !important;
    animation: dolphinJump 2.5s infinite ease-in-out;
}
@keyframes dolphinJump {
    0% { transform: translateY(0) scale(1); }
    30% { transform: translateY(-18px) scale(1.1); }
    50% { transform: translateY(-28px) scale(1.15); }
    70% { transform: translateY(-18px) scale(1.1); }
    100% { transform: translateY(0) scale(1); }
}
/* Desktop nav-menu styles (reverted) */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    background: linear-gradient(90deg, #e0f7fa 0%, #b2ebf2 100%) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00796b;
    letter-spacing: 1px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.nav-brand i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-logo {
    height: 60px;
    width: auto;
    margin-right: 15px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.nav-link {
    position: relative;
    color: #00796b;
    transition: color 0.3s, background 0.3s;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-link:hover,
    .nav-link.active {
    color: #004d40;
    background: #b2ebf2;
    border-radius: 4px;
}
/* Ensure animated menu items are visible in light mode */
.nav-menu .menu-sea-bg,
.nav-menu .menu-waves,
.nav-menu .menu-dolphin {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-btn {
    padding: 6px 12px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--primary-color);
    color: white;
}

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

    [data-theme="dark"] .navbar {
        background: linear-gradient(180deg, #0d1b2a 0%, #274472 100%) !important;
        color: #e3f7ff !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
    }
    [data-theme="dark"] .navbar .nav-brand,
    [data-theme="dark"] .navbar .nav-brand span {
        color: #e3f7ff !important;
    }
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.6;
    max-width: 600px;
    margin: 0 auto;
}

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f39c12;
    --accent-color: #e74c3c;
    --text-primary: #309eca;
    --text-secondary: #4a4a4a;
    --text-muted: #6c757d;
    --text-light: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-muted: #e9ecef;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --primary-color: #3498db;
    --secondary-color: #f39c12;
    --accent-color: #e74c3c;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #b0b0b0;
    --text-light: #ffffff;
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-muted: #3a3a3a;
    --white: #2d2d2d;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Base Text Colors */
body {
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

/* Text Color Classes */
.text-primary {
    color: var(--text-primary) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-light {
    color: var(--text-light) !important;
}

/* Paragraph and text elements */
p, span, div, li, td, th {
    color: var(--text-primary);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
}

/* Links */
a {
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

/* Form elements */
input, textarea, select {
    color: var(--text-primary);
    background-color: var(--bg-primary);
    border-color: var(--text-muted);
}

/* Cards and containers */
.card, .admin-card, .trip-card, .boat-card, .creature-card {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--bg-muted);
}

.trip-card h3,
.trip-card h4,
.trip-card h5,
.trip-card h6 {
    color: var(--text-primary);
}
.trip-card p,
.trip-card span,
.trip-card li {
    color: #333;
}


/* Dark mode body styles */
[data-theme="dark"] body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

/* Dark mode navbar styles */
[data-theme="dark"] .navbar {
    background: rgba(26, 26, 26, 0.95);
    color: var(--text-primary);
}

/* Dark mode section backgrounds */
[data-theme="dark"] .hero,
[data-theme="dark"] .about,
[data-theme="dark"] .gallery,
[data-theme="dark"] .our-boats,
[data-theme="dark"] .blog-preview,
[data-theme="dark"] .testimonials,
[data-theme="dark"] .values,
[data-theme="dark"] .contact,
[data-theme="dark"] .dolphin-turtle-section,
[data-theme="dark"] .about-preview,
[data-theme="dark"] .exploration-section,
[data-theme="dark"] .cta-section,
[data-theme="dark"] .testimonials-section,
[data-theme="dark"] .sea-creatures,
[data-theme="dark"] .underwater-exploration {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

/* Dark mode cards */
[data-theme="dark"] .boat-card,
[data-theme="dark"] .gallery-item,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .creature-card,
[data-theme="dark"] .exploration-item,
[data-theme="dark"] .cta-content,
[data-theme="dark"] .feature-item,
[data-theme="dark"] .boats-features,
[data-theme="dark"] .sea-creatures-grid .creature-card,
[data-theme="dark"] .exploration-grid .exploration-item {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .trip-card {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3) !important;
}
[data-theme="dark"] .trip-card h3,
[data-theme="dark"] .trip-card h4,
[data-theme="dark"] .trip-card h5,
[data-theme="dark"] .trip-card h6 {
    color: var(--text-primary) !important;
}
[data-theme="dark"] .trip-card p,
[data-theme="dark"] .trip-card span,
[data-theme="dark"] .trip-card li {
    color: var(--text-secondary) !important;
}

/* Fix creature card content */
[data-theme="dark"] .creature-content h3,
[data-theme="dark"] .exploration-item h3 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .creature-content p,
[data-theme="dark"] .exploration-item p {
    color: var(--text-secondary) !important;
}

/* Dark mode text elements */
[data-theme="dark"] .section-title,
[data-theme="dark"] .section-subtitle,
[data-theme="dark"] .page-title,
[data-theme="dark"] .page-subtitle,
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: var(--text-primary);
}

[data-theme="dark"] p,
[data-theme="dark"] .text-content,
[data-theme="dark"] .description {
    color: var(--text-secondary);
}

/* Fix white background sections in dark mode */
[data-theme="dark"] .our-boats,
[data-theme="dark"] .gallery,
[data-theme="dark"] .boats-features,
[data-theme="dark"] .sea-creatures,
[data-theme="dark"] .underwater-exploration {
    background-color: var(--bg-secondary) !important;
    background-image: none !important;
}

/* Force section backgrounds to be dark */
[data-theme="dark"] section {
    background-color: var(--bg-secondary) !important;
}

[data-theme="dark"] .section-title,
[data-theme="dark"] .section-subtitle {
    color: var(--text-primary) !important;
}

/* Override any white backgrounds */
[data-theme="dark"] .container {
    background-color: transparent !important;
}

/* Force all section headers to be dark */
[data-theme="dark"] .section-header {
    background-color: transparent !important;
}

/* Fix card backgrounds in dark mode */
[data-theme="dark"] .boat-card,
[data-theme="dark"] .gallery-item,
[data-theme="dark"] .feature-item {
    background-color: var(--white) !important;
    color: var(--text-dark) !important;
}

[data-theme="dark"] .boat-info h3,
[data-theme="dark"] .gallery-info h3,
[data-theme="dark"] .feature-item h4 {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .boat-info p,
[data-theme="dark"] .gallery-info p,
[data-theme="dark"] .feature-item p {
    color: var(--text-light) !important;
}

/* Dark mode video gallery */
[data-theme="dark"] .gallery-item.gallery-video {
    background: #1a1a1a;
}

[data-theme="dark"] .video-overlay {
    background: rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .video-overlay:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Dark mode buttons */
[data-theme="dark"] .btn,
[data-theme="dark"] .btn-primary,
[data-theme="dark"] .btn-secondary,
[data-theme="dark"] .cta-button {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

[data-theme="dark"] .btn:hover,
[data-theme="dark"] .btn-primary:hover,
[data-theme="dark"] .btn-secondary:hover,
[data-theme="dark"] .cta-button:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Dark mode containers */
[data-theme="dark"] .container {
    background-color: transparent;
}

/* Dark mode footer */
[data-theme="dark"] .footer {
    background-color: var(--secondary-color);
    color: var(--text-primary);
}

[data-theme="dark"] .footer-section h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .footer-section a {
    color: var(--text-light);
}

[data-theme="dark"] .footer-section a:hover {
    color: var(--primary-color);
}

/* Dark mode hero section */
[data-theme="dark"] .hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-light) 100%);
    color: var(--text-primary);
}

[data-theme="dark"] .hero-title,
[data-theme="dark"] .hero-subtitle {
    color: var(--text-primary);
}

/* Dark mode dolphin & turtle section */
[data-theme="dark"] .dolphin-turtle-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--secondary-color) 100%) !important;
    color: var(--text-dark) !important;
}

/* Dark mode about preview section */
[data-theme="dark"] .about-preview {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-light) 100%);
}

/* Dark mode exploration section */
[data-theme="dark"] .exploration-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--secondary-color) 100%);
}

/* Dark mode CTA section */
[data-theme="dark"] .cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

[data-theme="dark"] .cta-section h2,
[data-theme="dark"] .cta-section p {
    color: white;
}

/* Dark mode testimonials section */
[data-theme="dark"] .testimonials-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-light) 100%);
}

/* Dark mode loading screen */
[data-theme="dark"] .loading-screen {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-light) 100%);
}

/* Dark mode page hero */
[data-theme="dark"] .page-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-light) 100%);
    color: var(--text-primary);
}

/* Dark mode form elements */
[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background-color: var(--white);
    color: var(--text-primary);
    border-color: var(--border-color);
}

[data-theme="dark"] input:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

/* Dark mode links */
[data-theme="dark"] a {
    color: var(--primary-color);
}

[data-theme="dark"] a:hover {
    color: var(--secondary-color);
}

/* Dark mode navigation links */
[data-theme="dark"] .nav-link {
    color: var(--text-primary);
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
    color: var(--primary-color);
}

/* Dark mode stats and numbers */
[data-theme="dark"] .stat h3,
[data-theme="dark"] .stats h3 {
    color: var(--primary-color);
}

/* Dark mode video containers */
[data-theme="dark"] .video-container,
[data-theme="dark"] .creature-video-card {
    background-color: var(--white) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
}

/* Ensure videos are visible in dark mode */
[data-theme="dark"] .creature-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    background-color: transparent !important;
}

/* Force video containers to be visible */
[data-theme="dark"] .creature-video-card,
[data-theme="dark"] .video-container {
    background-color: var(--white) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    overflow: visible !important;
}

/* Override any hidden states */
[data-theme="dark"] .creature-video-card.hidden,
[data-theme="dark"] .video-container.hidden {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Fix video container in dark mode */
[data-theme="dark"] .video-container {
    position: relative !important;
    width: 100% !important;
    height: 250px !important;
    overflow: hidden !important;
    border-radius: 15px !important;
    background-color: var(--white) !important;
    display: block !important;
    visibility: visible !important;
}

/* Fix video card styling in dark mode */
[data-theme="dark"] .creature-video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background-color: var(--white) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="dark"] .creature-video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Dark mode blog cards */
[data-theme="dark"] .blog-card,
[data-theme="dark"] .blog-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
}

/* Dark mode trip showcase */
[data-theme="dark"] .trip-showcase {
    background-color: var(--white);
}

/* Dark mode language switcher */
[data-theme="dark"] .lang-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

[data-theme="dark"] .lang-btn.active,
[data-theme="dark"] .lang-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Dark mode hamburger menu */
[data-theme="dark"] .bar {
    background-color: var(--text-dark);
}

/* Dark mode overlay elements */
[data-theme="dark"] .overlay,
[data-theme="dark"] .modal-overlay {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Dark mode modal content */
[data-theme="dark"] .modal-content {
    background-color: var(--white);
    color: var(--text-primary);
}

/* Dark mode scrollbar */
[data-theme="dark"] ::-webkit-scrollbar {
    width: 8px;
}

[data-theme="dark"] ::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    gap: 5px;
    margin-left: 1rem;
}

.lang-btn {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Navigation Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.dark-mode-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.dark-mode-toggle i {
    transition: var(--transition);
}

/* Dark mode icon rotation */
[data-theme="dark"] .dark-mode-toggle i.fa-moon {
    transform: rotate(180deg);
}

/* Floating WhatsApp button for mobile */
.floating-whatsapp {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
    background: #25D366;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    text-decoration: none;
}

/* Floating dark mode toggle for mobile */
.floating-dark-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

/* Hide floating buttons on desktop by default */
@media (min-width: 768px) {
    .floating-dark-toggle {
        display: none;
    }
    .navbar {
    [data-theme="dark"] .navbar {
        background: linear-gradient(180deg, #0d1b2a 0%, #274472 100%) !important;
        color: #e3f7ff;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
    }
    [data-theme="dark"] .navbar {
        background: linear-gradient(180deg, #0d1b2a 0%, #274472 100%) !important;
        color: #e3f7ff;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
    }
        background: #fff !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    }
    [data-theme="dark"] .navbar {
        background: linear-gradient(180deg, #0d1b2a 0%, #274472 100%) !important;
        color: #e3f7ff;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
    }
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    background: #128C7E;
}

.floating-dark-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    padding: 0 20px;
    z-index: 3;
    position: relative;
    margin: 0 auto;
    text-align: center;
    animation: contentFadeIn 0.5s ease-out;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 2s ease-out 0.5s forwards;
    animation-fill-mode: forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Manual restart button for testing */
.restart-animation-btn {
    position: fixed;
    top: 10px;
    left: 10px;
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10000;
    font-size: 12px;
}

.restart-animation-btn:hover {
    background: #0056b3;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #1e3d6f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Destinations */
.destinations {
    background: var(--bg-secondary);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.destination-image {
    height: 250px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-content {
    padding: 1.5rem;
}

.destination-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.destination-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.destination-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.destination-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.destination-duration {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.destination-highlights {
    list-style: none;
    margin-bottom: 1rem;
}

.destination-highlights li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.destination-highlights li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 8px;
}

/* Available Trips */
.available-trips {
    background: var(--bg-secondary);
    padding: 80px 0;
}

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

.trip-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.trip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.trip-card.selected {
    border: 3px solid var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.trip-card.selected::before {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
}

.trip-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.trip-image {
    position: relative;
    overflow: hidden;
}

.trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.trip-card:hover .trip-image img {
    transform: scale(1.05);
}

.trip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.trip-details-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.trip-details-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.trip-content {
    padding: 1.5rem;
}

.trip-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.trip-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.trip-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.trip-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.trip-duration {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trip-duration i {
    color: var(--secondary-color);
}

.trip-seats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
}

.trip-seats i {
    font-size: 1.1rem;
}

.trip-seats strong {
    font-size: 1.2rem;
    font-weight: 700;
}

[data-theme="dark"] .trip-seats {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

.trip-highlights {
    list-style: none;
    margin-bottom: 1rem;
}

.trip-highlights li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trip-highlights li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 0.8rem;
}

.trip-difficulty {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.difficulty-easy {
    background: #d4edda;
    color: #155724;
}

.difficulty-moderate {
    background: #fff3cd;
    color: #856404;
}

.difficulty-hard {
    background: #f8d7da;
    color: #721c24;
}

.trip-select-btn {
    width: 100%;
    padding: 10px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.trip-select-btn:hover {
    background: #1e3d6f;
}

.trip-select-btn.selected {
    background: var(--secondary-color);
}

/* Trip Details Page */
.trip-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.trip-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.trip-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.trip-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.trip-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trip-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.trip-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.trip-price.adult-price {
    color: white;
}

.trip-price.children-price {
    color: #ffd700;
    font-size: 0.9rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.trip-price.children-price .price-amount {
    font-size: 2rem;
    color: #ffd700;
}

.price-period {
    font-size: 1rem;
    opacity: 0.8;
}

.trip-price.children-price .price-period {
    font-size: 0.9rem;
}

.trip-duration,
.trip-difficulty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.trip-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trip-gallery {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Video Gallery Styles */
.gallery-item.gallery-video {
    position: relative;
    background: #000;
}

.gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.6);
}

.video-overlay i {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.video-overlay:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.gallery-video video::-webkit-media-controls-panel {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
}

.gallery-video video::-webkit-media-controls-play-button,
.gallery-video video::-webkit-media-controls-volume-slider {
    filter: brightness(1.2);
}

.trip-program {
    padding: 80px 0;
    background: var(--bg-primary);
}

.program-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.step-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.step-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.wildlife-info {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.wildlife-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.wildlife-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.wildlife-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.wildlife-image {
    height: 250px;
    overflow: hidden;
}

.wildlife-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wildlife-content {
    padding: 2rem;
}

.wildlife-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.wildlife-scientific {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.wildlife-description {
    line-height: 1.6;
    color: var(--text-secondary);
}

.trip-includes {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.include-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.include-item:hover {
    background: var(--primary-color);
    color: white;
}

.include-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.include-item:hover .include-icon {
    background: white;
    color: var(--primary-color);
}

.include-text {
    font-weight: 500;
    color: var(--text-primary);
}

.important-info {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.info-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    background: var(--secondary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.booking-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Booking Form */
.booking {
    background: white;
    padding: 80px 0;
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.booking-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.booking-form {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e8ed;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

/* About Section */
.about {
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-secondary);
    font-weight: 500;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Blog Section */
.blog {
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-category {
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tag {
    background: var(--bg-secondary);
    color: var(--text-light);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.tag {
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.blog-photos-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.no-posts i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.no-posts h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.no-posts p {
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.footer-logo-img {
    height: 90px;
    width: auto;
    margin-bottom: 10px;
    object-fit: contain;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: var(--text-secondary);
}

/* Admin Button */
.admin-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
}

.admin-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Loading Spinner */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    font-weight: 500;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Trip Section */
.featured-trip {
    padding: 80px 0;
    background: white;
}

.trip-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trip-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.trip-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.trip-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.trip-content {
    padding: 2rem 0;
}

.trip-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.trip-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.trip-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.trip-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trip-select-btn,
.trip-contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    flex: 1;
    justify-content: center;
}

.trip-select-btn {
    background: var(--primary-color);
    color: white;
}

.trip-select-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.trip-contact-btn {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.trip-contact-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.no-trips {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.no-trips i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.no-trips h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.no-trips p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Destinations Preview */
.destinations-preview {
    background: var(--bg-secondary);
    padding: 80px 0;
}

/* About Preview */
.about-preview {
    background: white;
    padding: 80px 0;
}

.about-preview .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-preview .about-text {
    padding-right: 2rem;
}

.about-preview .about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-preview .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-preview .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.about-preview .stat {
    text-align: center;
}

.about-preview .stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-preview .stat p {
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

.about-preview .about-image {
    position: relative;
}

.about-preview .about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design for About Preview */
@media (max-width: 768px) {
    .about-preview .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-preview .about-text {
        padding-right: 0;
        text-align: center;
    }
    
    .about-preview .section-title {
        text-align: center;
    }
    
    .about-preview .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-preview .about-image img {
        height: 300px;
    }
}

/* Sea Creatures Section */
.sea-creatures {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sea-creatures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.creature-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.creature-image {
    height: 250px;
    overflow: hidden;
}

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

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

.creature-content {
    padding: 1.5rem;
}

.creature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.creature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Underwater Exploration Section */
.underwater-exploration {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.exploration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.exploration-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exploration-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.exploration-image {
    height: 200px;
    overflow: hidden;
}

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

.exploration-item:hover .exploration-image img {
    transform: scale(1.05);
}

.exploration-content {
    padding: 1.25rem;
}

.exploration-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.exploration-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Blog Preview */
.blog-preview {
    background: var(--bg-secondary);
    padding: 80px 0;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Team Section */
.team {
    background: var(--bg-secondary);
    padding: 80px 0;
}

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

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-member p {
    color: var(--text-light);
    font-weight: 500;
}

/* Values Section */
.values {
    background: white;
    padding: 80px 0;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Blog Filters */
.blog-filters {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    align-items: end;
}

.blog-filters .filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
}

.blog-filters .filter-group label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.blog-filters .filter-group input,
.blog-filters .filter-group select {
    padding: 8px 12px;
    border: 2px solid #e1e8ed;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    transition: var(--transition);
}

.blog-filters .filter-group input:focus,
.blog-filters .filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Newsletter Section */
.newsletter {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.newsletter-form button {
    white-space: nowrap;
}

/* Map Section */
.map-section {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.map-container {
    margin-top: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    display: block;
}

/* FAQ Section */
.faq {
    background: white;
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border: 1px solid #e1e8ed;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Available Trips Section */
.available-trips {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.trip-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.trip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.trip-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.trip-card:hover .trip-image img {
    transform: scale(1.05);
}

.trip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.trip-details-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.trip-details-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.trip-content {
    padding: 1.5rem;
}

.trip-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.trip-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.trip-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.trip-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.trip-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.trip-seats-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
}

.trip-seats-info i {
    font-size: 1.1rem;
}

.trip-seats-info strong {
    font-size: 1.2rem;
    font-weight: 700;
}

[data-theme="dark"] .trip-seats-info {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

.trip-highlights {
    list-style: none;
    margin-bottom: 1.5rem;
}

.trip-highlights li {
    padding: 0.25rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.trip-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Dolphin & Sea Turtles Section */
.dolphin-turtle-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.dolphin-turtle-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wave" x="0" y="0" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 Q25,0 50,10 T100,10" stroke="%23e3f2fd" stroke-width="2" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23wave)"/></svg>') repeat;
    opacity: 0.1;
    animation: waveMove 20s linear infinite;
}

@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

.creature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.creature-video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.creature-video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.video-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.creature-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    cursor: pointer;
}

/* Hide video overlays for autoplay */
.video-overlay {
    display: none !important;
}

/* Our Boats Section */
.our-boats {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.our-boats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23e3f2fd" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%23e3f2fd" opacity="0.3"/><circle cx="40" cy="80" r="1" fill="%23e3f2fd" opacity="0.3"/><circle cx="90" cy="90" r="1.5" fill="%23e3f2fd" opacity="0.3"/></svg>');
    z-index: 1;
}

.our-boats .container {
    position: relative;
    z-index: 2;
}

.boats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.boat-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.boat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.boat-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.boat-card:hover .boat-image img {
    transform: scale(1.05);
}

.boat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.boat-card:hover .boat-overlay {
    transform: translateY(0);
}

.boat-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.boat-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
    margin: 0;
}

.boats-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item {
    text-align: center;
    padding: 1rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23e3f2fd" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%23e3f2fd" opacity="0.3"/><circle cx="40" cy="80" r="1" fill="%23e3f2fd" opacity="0.3"/><circle cx="90" cy="90" r="1.5" fill="%23e3f2fd" opacity="0.3"/></svg>');
    z-index: 1;
}

.gallery .container {
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
    margin: 0;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.creature-video-card:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.creature-info {
    padding: 2rem;
}

.creature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.creature-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.creature-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.creature-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, var(--primary-color), #3498db);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.feature-tag:hover {
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    animation: floatDots 15s linear infinite;
}

@keyframes floatDots {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    color: white;
    text-align: center;
}

.testimonials-container {
    position: relative;
    max-width: 1400px;
    margin: 4rem auto 0;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 2rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-y;
    cursor: grab;
    width: 100%;
    min-width: 100%;
}

.testimonials-slider:active {
    cursor: grabbing;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 350px;
    flex: 0 0 350px;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), #3498db);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.1rem;
}

.testimonials-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.testimonial-nav {
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.testimonial-nav.prev {
    left: -25px;
}

.testimonial-nav.next {
    right: -25px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .creature-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-container {
        height: 250px;
    }
    
    .creature-info {
        padding: 1.5rem;
    }
    
    .creature-info h3 {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        min-width: 300px;
        flex: 0 0 300px;
        padding: 2rem;
    }
    
    .testimonials-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .testimonials-navigation {
        display: none;
    }
    
    .testimonials-slider {
        padding: 1rem 0;
    }
}

@media (max-width: 480px) {
    .dolphin-turtle-section,
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .creature-info {
        padding: 1rem;
    }
    
    [data-theme="dark"] .navbar .nav-brand,
    [data-theme="dark"] .navbar .nav-brand span {
        color: #e3f7ff !important;
    }
    .testimonial-card {
        min-width: 280px;
        flex: 0 0 280px;
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonials-container {
        padding: 0 0.5rem;
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #87ceeb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    box-sizing: border-box;
    overflow: hidden;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Hide main content while loading */
body.loading .main-content {
    opacity: 0;
    visibility: hidden;
}

.main-content {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-in, visibility 0.5s ease-in;
}

.loading-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    box-sizing: border-box;
}

.loading-logo {
    margin-bottom: 3rem;
    animation: logoFloat 3s ease-in-out infinite;
}

.loading-logo img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.loading-logo h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.loading-animation {
    width: 100%;
    max-width: 400px;
    height: 200px;
    position: relative;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(180deg, #87ceeb 0%, #4682b4 50%, #1e3c72 100%);
    box-sizing: border-box;
}

.sea-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Waves */
.wave {
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: waveMove 3s linear infinite;
}

.wave1 {
    top: 0;
    animation-delay: 0s;
    opacity: 0.7;
}

.wave2 {
    top: 20px;
    animation-delay: -1s;
    opacity: 0.5;
}

.wave3 {
    top: 40px;
    animation-delay: -2s;
    opacity: 0.3;
}

@keyframes waveMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Dolphins */
.dolphin {
    position: absolute;
    font-size: 2rem;
    animation: dolphinSwim 4s ease-in-out infinite;
}

.dolphin1 {
    top: 30px;
    left: -50px;
    animation-delay: 0s;
}

.dolphin2 {
    top: 60px;
    left: -50px;
    animation-delay: 2s;
}

@keyframes dolphinSwim {
    0% { transform: translateX(-50px) translateY(0px); }
    25% { transform: translateX(100px) translateY(-10px); }
    50% { transform: translateX(200px) translateY(0px); }
    75% { transform: translateX(300px) translateY(-5px); }
    100% { transform: translateX(450px) translateY(0px); }
}

/* Fish */
.fish {
    position: absolute;
    font-size: 1.5rem;
    animation: fishSwim 3s ease-in-out infinite;
}

.fish1 {
    top: 80px;
    left: -30px;
    animation-delay: 0.5s;
}

.fish2 {
    top: 120px;
    left: -30px;
    animation-delay: 1.5s;
}

.fish3 {
    top: 150px;
    left: -30px;
    animation-delay: 2.5s;
}

@keyframes fishSwim {
    0% { transform: translateX(-30px) translateY(0px); }
    50% { transform: translateX(200px) translateY(-5px); }
    100% { transform: translateX(430px) translateY(0px); }
}

/* Bubbles */
.bubble {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: bubbleRise 2s ease-in-out infinite;
}

.bubble1 {
    left: 50px;
    bottom: 20px;
    animation-delay: 0s;
}

.bubble2 {
    left: 150px;
    bottom: 30px;
    animation-delay: 0.5s;
}

.bubble3 {
    left: 250px;
    bottom: 25px;
    animation-delay: 1s;
}

.bubble4 {
    left: 100px;
    bottom: 40px;
    animation-delay: 1.5s;
}

.bubble5 {
    left: 300px;
    bottom: 35px;
    animation-delay: 2s;
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0px) scale(0.5);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-100px) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-200px) scale(0.5);
        opacity: 0;
    }
}

.loading-text {
    margin-top: 2rem;
}

.loading-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.loading-bar {
    width: 100%;
    max-width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
    box-sizing: border-box;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #00bfff, #87ceeb, #00bfff);
    border-radius: 2px;
    animation: loadingProgress 3s ease-in-out infinite;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Reviews Page Styles */
.reviews-page {
    padding-top: 80px;
}

.reviews-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.reviews-hero .page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.reviews-hero .page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.submit-review-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.review-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-form .form-group {
    margin-bottom: 1.5rem;
}

.review-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    font-size: 2rem;
    color: var(--border-color);
    cursor: pointer;
    transition: color 0.2s ease;
    margin-bottom: 0;
}

.star-rating input[type="radio"]:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffc107;
}

.reviews-display-section {
    padding: 4rem 0;
}

.reviews-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.reviewer-details h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
    font-weight: 600;
}

.reviewer-details p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

.review-content h5 {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.review-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.no-reviews {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.no-reviews-icon {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 1rem;
}

.no-reviews h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.load-more-container {
    text-align: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    margin: 0;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.modal-body p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.modal-footer {
    text-align: center;
}

/* Admin Reviews Styles */
.filter-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.filter-tab {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-primary);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-approved {
    background: #d4edda;
    color: #155724;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
}

.text-warning {
    color: #ffc107 !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Dark mode styles for reviews page */
[data-theme="dark"] .reviews-page {
    background-color: var(--bg-primary);
}

[data-theme="dark"] .reviews-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

[data-theme="dark"] .submit-review-section {
    background-color: var(--bg-dark);
}

[data-theme="dark"] .review-form-container {
    background-color: var(--bg-light);
    color: var(--text-primary);
}

[data-theme="dark"] .review-form label {
    color: var(--text-primary);
}

[data-theme="dark"] .review-form input,
[data-theme="dark"] .review-form select,
[data-theme="dark"] .review-form textarea {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    border-color: var(--border-color);
}

[data-theme="dark"] .review-form input:focus,
[data-theme="dark"] .review-form select:focus,
[data-theme="dark"] .review-form textarea:focus {
    border-color: var(--primary-color);
}

[data-theme="dark"] .reviews-display-section {
    background-color: var(--bg-dark);
}

[data-theme="dark"] .review-card {
    background-color: var(--bg-light);
    color: var(--text-primary);
}

[data-theme="dark"] .reviewer-details h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .reviewer-details p {
    color: var(--text-light);
}

[data-theme="dark"] .review-content h5 {
    color: var(--text-primary);
}

[data-theme="dark"] .review-content p {
    color: var(--text-light);
}

[data-theme="dark"] .no-reviews h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .no-reviews p {
    color: var(--text-light);
}

[data-theme="dark"] .modal-content {
    background-color: var(--bg-light);
    color: var(--text-primary);
}

[data-theme="dark"] .modal-header h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .modal-body p {
    color: var(--text-light);
}

[data-theme="dark"] .modal-close {
    color: var(--text-light);
}

/* Improved Footer */
.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #87ceeb 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.footer-waves .wave {
    position: absolute;
    width: 200%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23ffffff" opacity="0.1"/></svg>') repeat-x;
    animation: footerWave 10s linear infinite;
}

.footer-waves .wave1 {
    top: 0;
    animation-delay: 0s;
}

.footer-waves .wave2 {
    top: 20px;
    animation-delay: -3s;
    opacity: 0.7;
}

.footer-waves .wave3 {
    top: 40px;
    animation-delay: -6s;
    opacity: 0.5;
}

@keyframes footerWave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.footer-brand {
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.footer-brand p {
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.sea-creatures-footer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-dolphin,
.footer-turtle,
.footer-fish {
    font-size: 2rem;
    animation: creatureFloat 3s ease-in-out infinite;
}

.footer-dolphin {
    animation-delay: 0s;
}

.footer-turtle {
    animation-delay: 1s;
}

.footer-fish {
    animation-delay: 2s;
}

@keyframes creatureFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    text-align: center;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00bfff, #87ceeb);
    border-radius: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-section ul li a:hover {
    color: #00bfff;
    transform: translateX(5px);
}

.footer-section ul li a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    width: 20px;
    color: #00bfff;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.youtube:hover {
    background: #ff0000;
}

.newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.newsletter p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

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

.newsletter-form button {
    padding: 0.8rem 1rem;
    background: linear-gradient(45deg, #00bfff, #87ceeb);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00bfff;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 2rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo-img {
        width: 70px !important;
        height: 70px !important;
    }
    
    .footer-logo span {
        font-size: 1.8rem;
    }
    
    .sea-creatures-footer {
        justify-content: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .footer-section ul li a {
        justify-content: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-links {
        align-items: center;
    }
    
    .social-link {
        justify-content: center;
    }
    
    .newsletter {
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 2rem 0 1.5rem;
        gap: 1.5rem;
    }
    
    .footer-logo {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-logo-img {
        width: 80px !important;
        height: 80px !important;
    }
    
    .footer-logo span {
        font-size: 2rem;
    }
    
    .sea-creatures-footer {
        gap: 0.5rem;
    }
    
    .footer-dolphin,
    .footer-turtle,
    .footer-fish {
        font-size: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .social-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .newsletter {
        padding: 1rem;
    }
    
    .newsletter-form input {
        font-size: 0.9rem;
        padding: 0.6rem;
    }
    
    .newsletter-form button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Contact Page Sea Decorations */
.contact {
    position: relative;
    overflow: hidden;
}

.sea-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* Coral decorations */
.coral {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: coralSway 4s ease-in-out infinite;
}

.coral1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.coral2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.coral3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes coralSway {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.1); }
}

/* Seaweed decorations */
.seaweed {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: seaweedSway 3s ease-in-out infinite;
}

.seaweed1 {
    top: 30%;
    left: 5%;
    animation-delay: 0.5s;
}

.seaweed2 {
    top: 70%;
    right: 10%;
    animation-delay: 1.5s;
}

.seaweed3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2.5s;
}

@keyframes seaweedSway {
    0%, 100% { transform: rotate(-2deg) translateY(0px); }
    50% { transform: rotate(2deg) translateY(-5px); }
}

/* Starfish decorations */
.starfish {
    position: absolute;
    font-size: 1.8rem;
    opacity: 0.8;
    animation: starfishFloat 5s ease-in-out infinite;
}

.starfish1 {
    top: 25%;
    right: 25%;
    animation-delay: 0s;
}

.starfish2 {
    bottom: 40%;
    left: 30%;
    animation-delay: 2.5s;
}

@keyframes starfishFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(10deg); }
}

/* Sea anemone */
.sea-anemone {
    position: absolute;
    top: 50%;
    right: 5%;
    font-size: 2.2rem;
    opacity: 0.7;
    animation: anemonePulse 3s ease-in-out infinite;
}

@keyframes anemonePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Sea urchin */
.sea-urchin {
    position: absolute;
    bottom: 15%;
    right: 20%;
    font-size: 1.6rem;
    opacity: 0.6;
    animation: urchinRoll 4s ease-in-out infinite;
}

@keyframes urchinRoll {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

/* Jellyfish */
.jellyfish {
    position: absolute;
    font-size: 2rem;
    opacity: 0.8;
    animation: jellyfishFloat 6s ease-in-out infinite;
}

.jellyfish1 {
    top: 15%;
    left: 25%;
    animation-delay: 0s;
}

.jellyfish2 {
    top: 45%;
    right: 30%;
    animation-delay: 3s;
}

@keyframes jellyfishFloat {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-5px) translateX(-5px); }
    75% { transform: translateY(-15px) translateX(3px); }
}

/* Seahorse */
.seahorse {
    position: absolute;
    top: 35%;
    left: 8%;
    font-size: 1.8rem;
    opacity: 0.7;
    animation: seahorseSwim 5s ease-in-out infinite;
}

@keyframes seahorseSwim {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    50% { transform: translateX(20px) rotate(5deg); }
}

/* Octopus */
.octopus {
    position: absolute;
    bottom: 25%;
    right: 8%;
    font-size: 2.2rem;
    opacity: 0.6;
    animation: octopusWave 4s ease-in-out infinite;
}

@keyframes octopusWave {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

/* Crab */
.crab {
    position: absolute;
    bottom: 10%;
    left: 40%;
    font-size: 1.4rem;
    opacity: 0.7;
    animation: crabWalk 3s ease-in-out infinite;
}

@keyframes crabWalk {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    50% { transform: translateX(15px) rotate(5deg); }
}

/* Lobster */
.lobster {
    position: absolute;
    top: 55%;
    left: 12%;
    font-size: 1.6rem;
    opacity: 0.6;
    animation: lobsterMove 4s ease-in-out infinite;
}

@keyframes lobsterMove {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    50% { transform: translateX(-10px) rotate(-5deg); }
}

/* Floating fish */
.floating-fish {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.8;
    animation: fishSwim 4s ease-in-out infinite;
}

.fish4 {
    top: 20%;
    left: 60%;
    animation-delay: 0s;
}

.fish5 {
    top: 40%;
    right: 40%;
    animation-delay: 1.5s;
}

.fish6 {
    bottom: 35%;
    left: 50%;
    animation-delay: 3s;
}

@keyframes fishSwim {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(10px) translateY(-5px); }
    50% { transform: translateX(20px) translateY(0px); }
    75% { transform: translateX(10px) translateY(5px); }
}

/* Bubbles */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bubble {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(135, 206, 235, 0.6);
    border-radius: 50%;
    animation: bubbleRise 3s ease-in-out infinite;
}

.bubble6 {
    left: 20%;
    bottom: 20%;
    animation-delay: 0s;
}

.bubble7 {
    left: 40%;
    bottom: 30%;
    animation-delay: 1s;
}

.bubble8 {
    right: 30%;
    bottom: 25%;
    animation-delay: 2s;
}

.bubble9 {
    right: 15%;
    bottom: 40%;
    animation-delay: 0.5s;
}

.bubble10 {
    left: 60%;
    bottom: 15%;
    animation-delay: 1.5s;
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0px) scale(0.5);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-100px) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-200px) scale(0.5);
        opacity: 0;
    }
}

/* Social Media Section Sea Decorations */
.social-section {
    position: relative;
    overflow: hidden;
}

.sea-decoration-social {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-dolphin-social {
    position: absolute;
    top: 20%;
    left: 10%;
    font-size: 2.5rem;
    opacity: 0.8;
    animation: dolphinSwim 6s ease-in-out infinite;
}

.floating-turtle-social {
    position: absolute;
    top: 60%;
    right: 15%;
    font-size: 2rem;
    opacity: 0.7;
    animation: turtleSwim 5s ease-in-out infinite;
}

.floating-fish-social {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.8;
    animation: fishSwim 4s ease-in-out infinite;
}

.floating-fish-social.fish1 {
    top: 30%;
    right: 30%;
    animation-delay: 0s;
}

.floating-fish-social.fish2 {
    top: 70%;
    left: 20%;
    animation-delay: 2s;
}

.floating-fish-social.fish3 {
    top: 45%;
    left: 60%;
    animation-delay: 1s;
}

.coral-social {
    position: absolute;
    font-size: 1.8rem;
    opacity: 0.6;
    animation: coralSway 4s ease-in-out infinite;
}

.coral-social.coral1 {
    bottom: 20%;
    left: 5%;
    animation-delay: 0s;
}

.coral-social.coral2 {
    top: 40%;
    right: 5%;
    animation-delay: 2s;
}

.seaweed-social {
    position: absolute;
    font-size: 1.4rem;
    opacity: 0.5;
    animation: seaweedSway 3s ease-in-out infinite;
}

.seaweed-social.seaweed1 {
    bottom: 30%;
    right: 25%;
    animation-delay: 1s;
}

.seaweed-social.seaweed2 {
    top: 50%;
    left: 15%;
    animation-delay: 2.5s;
}

.starfish-social {
    position: absolute;
    top: 35%;
    left: 40%;
    font-size: 1.6rem;
    opacity: 0.7;
    animation: starfishFloat 5s ease-in-out infinite;
}

.bubbles-social {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bubbles-social .bubble {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(135, 206, 235, 0.5);
    border-radius: 50%;
    animation: bubbleRise 2.5s ease-in-out infinite;
}

.bubbles-social .bubble1 {
    left: 15%;
    bottom: 20%;
    animation-delay: 0s;
}

.bubbles-social .bubble2 {
    left: 35%;
    bottom: 30%;
    animation-delay: 0.5s;
}

.bubbles-social .bubble3 {
    right: 25%;
    bottom: 25%;
    animation-delay: 1s;
}

.bubbles-social .bubble4 {
    right: 10%;
    bottom: 40%;
    animation-delay: 1.5s;
}

.bubbles-social .bubble5 {
    left: 50%;
    bottom: 15%;
    animation-delay: 2s;
}

@keyframes dolphinSwim {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(15px) translateY(-8px); }
    50% { transform: translateX(30px) translateY(0px); }
    75% { transform: translateX(15px) translateY(8px); }
}

@keyframes turtleSwim {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    50% { transform: translateX(-20px) translateY(-5px); }
}

/* Map Section Sea Decorations */
.map-section {
    position: relative;
    overflow: hidden;
}

.sea-decoration-map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-dolphin-map {
    position: absolute;
    top: 15%;
    right: 20%;
    font-size: 2.2rem;
    opacity: 0.8;
    animation: dolphinSwim 7s ease-in-out infinite;
}

.floating-turtle-map {
    position: absolute;
    top: 50%;
    left: 10%;
    font-size: 1.8rem;
    opacity: 0.7;
    animation: turtleSwim 6s ease-in-out infinite;
}

.floating-fish-map {
    position: absolute;
    font-size: 1.3rem;
    opacity: 0.8;
    animation: fishSwim 4s ease-in-out infinite;
}

.floating-fish-map.fish1 {
    top: 25%;
    left: 30%;
    animation-delay: 0s;
}

.floating-fish-map.fish2 {
    top: 65%;
    right: 30%;
    animation-delay: 2s;
}

.floating-fish-map.fish3 {
    top: 40%;
    right: 10%;
    animation-delay: 1s;
}

.coral-map {
    position: absolute;
    font-size: 1.6rem;
    opacity: 0.6;
    animation: coralSway 4s ease-in-out infinite;
}

.coral-map.coral1 {
    bottom: 25%;
    left: 5%;
    animation-delay: 0s;
}

.coral-map.coral2 {
    top: 30%;
    right: 5%;
    animation-delay: 2s;
}

.seaweed-map {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.5;
    animation: seaweedSway 3s ease-in-out infinite;
}

.seaweed-map.seaweed1 {
    bottom: 35%;
    right: 20%;
    animation-delay: 1s;
}

.seaweed-map.seaweed2 {
    top: 60%;
    left: 20%;
    animation-delay: 2.5s;
}

.starfish-map {
    position: absolute;
    top: 45%;
    left: 50%;
    font-size: 1.4rem;
    opacity: 0.7;
    animation: starfishFloat 5s ease-in-out infinite;
}

.seahorse-map {
    position: absolute;
    bottom: 20%;
    right: 40%;
    font-size: 1.6rem;
    opacity: 0.6;
    animation: seahorseSwim 5s ease-in-out infinite;
}

.octopus-map {
    position: absolute;
    top: 35%;
    left: 15%;
    font-size: 2rem;
    opacity: 0.7;
    animation: octopusWave 4s ease-in-out infinite;
}

.bubbles-map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bubbles-map .bubble {
    position: absolute;
    width: 7px;
    height: 7px;
    background: rgba(135, 206, 235, 0.6);
    border-radius: 50%;
    animation: bubbleRise 3s ease-in-out infinite;
}

.bubbles-map .bubble1 {
    left: 25%;
    bottom: 20%;
    animation-delay: 0s;
}

.bubbles-map .bubble2 {
    left: 45%;
    bottom: 30%;
    animation-delay: 0.8s;
}

.bubbles-map .bubble3 {
    right: 30%;
    bottom: 25%;
    animation-delay: 1.6s;
}

.bubbles-map .bubble4 {
    right: 15%;
    bottom: 40%;
    animation-delay: 2.4s;
}

.bubbles-map .bubble5 {
    left: 60%;
    bottom: 15%;
    animation-delay: 3.2s;
}

/* FAQ Section Sea Decorations */
.faq {
    position: relative;
    overflow: hidden;
}

.sea-decoration-faq {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-dolphin-faq {
    position: absolute;
    top: 20%;
    left: 15%;
    font-size: 2.3rem;
    opacity: 0.8;
    animation: dolphinSwim 6s ease-in-out infinite;
}

.floating-turtle-faq {
    position: absolute;
    top: 60%;
    right: 20%;
    font-size: 1.9rem;
    opacity: 0.7;
    animation: turtleSwim 5s ease-in-out infinite;
}

.floating-fish-faq {
    position: absolute;
    font-size: 1.4rem;
    opacity: 0.8;
    animation: fishSwim 4s ease-in-out infinite;
}

.floating-fish-faq.fish1 {
    top: 30%;
    right: 35%;
    animation-delay: 0s;
}

.floating-fish-faq.fish2 {
    top: 70%;
    left: 25%;
    animation-delay: 2s;
}

.floating-fish-faq.fish3 {
    top: 45%;
    left: 55%;
    animation-delay: 1s;
}

.coral-faq {
    position: absolute;
    font-size: 1.7rem;
    opacity: 0.6;
    animation: coralSway 4s ease-in-out infinite;
}

.coral-faq.coral1 {
    bottom: 25%;
    left: 8%;
    animation-delay: 0s;
}

.coral-faq.coral2 {
    top: 35%;
    right: 8%;
    animation-delay: 2s;
}

.seaweed-faq {
    position: absolute;
    font-size: 1.3rem;
    opacity: 0.5;
    animation: seaweedSway 3s ease-in-out infinite;
}

.seaweed-faq.seaweed1 {
    bottom: 35%;
    right: 25%;
    animation-delay: 1s;
}

.seaweed-faq.seaweed2 {
    top: 55%;
    left: 18%;
    animation-delay: 2.5s;
}

.starfish-faq {
    position: absolute;
    top: 40%;
    left: 45%;
    font-size: 1.5rem;
    opacity: 0.7;
    animation: starfishFloat 5s ease-in-out infinite;
}

.seahorse-faq {
    position: absolute;
    bottom: 20%;
    right: 45%;
    font-size: 1.7rem;
    opacity: 0.6;
    animation: seahorseSwim 5s ease-in-out infinite;
}

.octopus-faq {
    position: absolute;
    top: 30%;
    left: 20%;
    font-size: 2.1rem;
    opacity: 0.7;
    animation: octopusWave 4s ease-in-out infinite;
}

.crab-faq {
    position: absolute;
    bottom: 15%;
    left: 45%;
    font-size: 1.3rem;
    opacity: 0.7;
    animation: crabWalk 3s ease-in-out infinite;
}

.lobster-faq {
    position: absolute;
    top: 55%;
    left: 15%;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: lobsterMove 4s ease-in-out infinite;
}

.bubbles-faq {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bubbles-faq .bubble {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(135, 206, 235, 0.5);
    border-radius: 50%;
    animation: bubbleRise 2.8s ease-in-out infinite;
}

.bubbles-faq .bubble1 {
    left: 20%;
    bottom: 20%;
    animation-delay: 0s;
}

.bubbles-faq .bubble2 {
    left: 40%;
    bottom: 30%;
    animation-delay: 0.7s;
}

.bubbles-faq .bubble3 {
    right: 25%;
    bottom: 25%;
    animation-delay: 1.4s;
}

.bubbles-faq .bubble4 {
    right: 12%;
    bottom: 40%;
    animation-delay: 2.1s;
}

.bubbles-faq .bubble5 {
    left: 55%;
    bottom: 15%;
    animation-delay: 2.8s;
}

/* Responsive Design for Sea Decorations */
@media (max-width: 768px) {
    .coral, .seaweed, .starfish, .sea-anemone, .sea-urchin, 
    .jellyfish, .seahorse, .octopus, .crab, .lobster, .floating-fish {
        font-size: 1.2rem;
        opacity: 0.5;
    }
    
    .floating-dolphin-social, .floating-turtle-social,
    .floating-dolphin-map, .floating-turtle-map,
    .floating-dolphin-faq, .floating-turtle-faq {
        font-size: 1.8rem;
        opacity: 0.6;
    }
    
    .bubble {
        width: 4px;
        height: 4px;
    }
}

@media (max-width: 480px) {
    .coral, .seaweed, .starfish, .sea-anemone, .sea-urchin, 
    .jellyfish, .seahorse, .octopus, .crab, .lobster, .floating-fish {
        font-size: 1rem;
        opacity: 0.4;
    }
    
    .floating-dolphin-social, .floating-turtle-social,
    .floating-dolphin-map, .floating-turtle-map,
    .floating-dolphin-faq, .floating-turtle-faq {
        font-size: 1.5rem;
        opacity: 0.5;
    }
    
    .bubble {
        width: 3px;
        height: 3px;
    }
}

