/* ============================================================
   Reset & Base
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #00304D;
    overflow-x: hidden;
    max-width: 100vw;
}

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

/* ============================================================
   Header & Navigation
   ============================================================ */
.header {
    background: rgba(0, 48, 77, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-menu a:hover {
    color: #3498db;
}

/* Mobile hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* Language switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: #bdc3c7;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn.active {
    color: #3498db;
    background: rgba(52, 152, 219, 0.2);
    font-weight: 600;
}

.lang-btn:hover {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

.lang-divider {
    color: #ccc;
    font-size: 0.8rem;
}

/* ============================================================
   Shared Section Styles
   ============================================================ */
section {
    padding: 80px 0;
}

section:not(.hero) {
    background: #00304D;
    color: #ffffff;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h4 {
    font-size: 1.25rem;
    color: #1abc9c;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA button */
.cta-button {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #2980b9;
}

/* Centered CTA wrapper used after each section */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(rgba(23, 37, 84, 0.6), rgba(41, 128, 185, 0.7)),
                url('../assets/images/1727102542903.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-video {
    flex: 0.7;
    max-width: 400px;
}

.hero-video video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   About Section
   ============================================================ */
.about {
    background: #00304D;
    color: #ffffff;
}

.experience-section,
.scenic-section {
    display: flex;
    align-items: center;
    gap: 30px;
}

.experience-section {
    margin-bottom: 40px;
}

.experience-text,
.scenic-text {
    flex: 0.6;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid #1abc9c;
    border-radius: 0 8px 8px 0;
    padding: 1.5rem 2rem;
}

.experience-text p,
.scenic-text p {
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
}

.experience-image,
.scenic-video {
    flex: 1.4;
    max-width: 500px;
}

/* Images and videos inside about section */
.about-media {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   Fleet Section
   ============================================================ */
.boats {
    background: #00304D;
    color: #ffffff;
}

.fleet-single {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.fleet-single .fleet-image {
    max-width: 700px;
    width: 100%;
}

.service-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2.5rem;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 700px;
}

.carousel-track-container {
    overflow: hidden;
    flex: 1;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.carousel-slide {
    min-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    display: block;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.carousel-btn:hover {
    background: #1abc9c;
    border-color: #1abc9c;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.carousel-dot.active {
    background: #1abc9c;
}

.fleet-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fleet-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* ============================================================
   Services Section
   ============================================================ */
.services {
    background: #00304D;
    color: #ffffff;
}

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

.service-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid #1abc9c;
    border-radius: 0 8px 8px 0;
    padding: 1.5rem 2rem;
    color: #ffffff;
}

.service-item h3 {
    font-size: 1rem;
    color: #1abc9c;
    margin-bottom: 0.75rem;
    text-align: left;
}

.service-item p {
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================================
   Contact Section
   ============================================================ */
.contact {
    background: #00304D;
    color: #ffffff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.contact-info-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid #1abc9c;
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.5rem;
}

.contact-info-item .contact-icon {
    width: 22px;
    height: 22px;
    color: #1abc9c;
    display: block;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1abc9c;
    margin: 0 0 0.4rem 0;
    text-align: left;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    word-break: break-all;
}

.contact-info-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}

.contact-info-item a:hover {
    color: #1abc9c;
}

/* Map */
.map-wrapper {
    margin-top: 2.5rem;
    height: 340px;
    overflow: hidden;
    border-radius: 12px;
    line-height: 0;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flyer-zoomable {
    cursor: zoom-in;
}

/* ============================================================
   Floating WhatsApp Button
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.whatsapp-float:active {
    transform: scale(0.95);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
    background: #00304D;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* ============================================================
   Responsive — 768px
   ============================================================ */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 48, 77, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    .navbar .container {
        padding: 0.75rem 20px;
    }

    .logo-img {
        height: 35px;
    }

    /* Hero */
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-wrapper {
        flex-direction: column-reverse;
        gap: 20px;
        padding: 20px 15px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-video {
        max-width: 100%;
        flex: 1;
    }

    .hero-video video {
        width: 100%;
        max-height: none;
        object-fit: cover;
    }

    /* About */
    .experience-section,
    .scenic-section {
        flex-direction: column;
        gap: 20px;
    }

    .experience-text,
    .experience-image,
    .scenic-text,
    .scenic-video {
        flex: 1;
        max-width: 100%;
    }

    /* Fleet */
    .fleet-single .fleet-image {
        max-width: 100%;
    }

    /* Service carousel */
    .carousel-wrapper {
        max-width: 100%;
    }

    /* Typography */
    h2 {
        font-size: 2rem;
    }

    /* WhatsApp */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    /* Contact cards — 2 columns on tablet */
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   Responsive — 480px
   ============================================================ */
@media (max-width: 480px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 40px 15px;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}
