/* Base Styles & Overflow Fix */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

body {
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Semi-Transparent Nautical Header */
.main-header {
    background-color: rgba(43, 43, 43, 0.95);
    padding: 1rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #ff9f1c;
}

/* Hamburger Menu Icon (Hidden on Desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Buttons */
.btn-primary {
    background-color: #ff9f1c; 
    color: #0b3954;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #e38a15;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid white;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background-color: white;
    color: #0b3954;
}

/* Fullscreen Hero Section */
.hero-fullscreen {
    position: relative;
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    overflow: hidden;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 57, 84, 0.5); 
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}

.review-banner {
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.stars {
    color: #ff9f1c;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.angled-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.angled-divider svg {
    display: block;
    width: 100%;
    height: 80px; 
}

/* About Section */
.about-section {
    padding: 6rem 5% 8rem 5%; 
    background-color: #f4f7f6;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-img-main {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #0b3954;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Trips Section */
.trips-section {
    padding: 8rem 5% 8rem 5%; 
    background-color: #3d3e3e;
    color: white;
    clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 100%);
    margin-top: -80px;
    position: relative;
    z-index: 1;
}

.trips-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.section-label {
    color: #ff9f1c;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 2rem;
    max-width: 1500px;
    margin: 0 auto;
}

.trip-card {
    background: white;
    color: #333;
    padding: 1.5rem; 
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    height: 100%; 
}

.trip-card img {
    width: 100%; 
    height: 280px; 
    object-fit: cover; 
    object-position: center; 
    border-radius: 4px;
    margin-bottom: 1.5rem;
}
.trip-card h3 {
    margin-bottom: 1rem;
    color: #131313;
}

.trip-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.trip-card h4 {
    margin-bottom: 1.5rem;
}

.trip-card .btn-primary {
    margin-top: auto; 
}

/* Charter Features Section */
.charter-features-section {
    padding: 8rem 5% 8rem 5%; 
    background-color: #f4f7f6; 
    text-align: center;
    clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 100%); 
    margin-top: -80px; 
    position: relative;
    z-index: 2;
}

.features-header {
    margin-bottom: 4rem;
}

.features-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden; 
    padding: 15px 0;
}

.features-slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
}

.charter-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.5rem;
    background: white; 
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    flex: 0 0 calc(33.333% - 1.33rem); 
    min-width: 280px;
}

.feature-icon {
    font-size: 2.5rem;
    color: #0b3954; 
    margin-bottom: 1rem;
    line-height: 1;
}

.charter-feature-item h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0b3954; 
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.charter-feature-item p {
    font-size: 0.95rem;
    color: #555;
    max-width: 320px;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 5% 6rem 5%; 
    background-color: #4f5152; 
    color: white;
    clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 100%); 
    margin-top: -80px; 
    position: relative;
    z-index: 3;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b858;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

.testimonials-container {
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.overall-rating {
    flex: 0 0 220px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.overall-rating h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

.big-stars {
    font-size: 2rem;
    color: #ff9f1c;
    letter-spacing: 2px;
}

.google-label {
    font-size: 1.2rem;
    font-weight: 800;
    font-family: Arial, sans-serif;
    letter-spacing: -0.5px;
    margin-top: 0.5rem;
    background: white;
    color: #333;
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
    align-self: center;
}

/* Testimonial Slider Wrapper - Fixed for Mobile */
.slider-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden; 
    padding: 10px 0;
    width: 100%; 
}

.reviews-slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s ease-in-out; 
}

.review-card {
    background: white;
    color: #333;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(33.333% - 1rem); 
    min-width: 280px; 
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.reviewer-info h4 { margin: 0; font-size: 1rem; color: #333; }
.reviewer-info span { font-size: 0.75rem; color: #777; }

.platform-icon {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.4rem;
}

.review-stars {
    color: #ff9f1c;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.review-text-body {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
}

/* Global Responsive Adjustments */
@media (max-width: 1200px) {
    .trips-grid { gap: 1rem; }
}

@media (max-width: 1024px) {
    /* Hide desktop button, pin Hamburger to top right */
    .header-action { display: none; }
    .hamburger { display: flex; margin-left: auto; }
    
    /* Mobile Menu Drawer */
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px; /* Safely tucked away */
        width: 250px;
        height: 100vh;
        background-color: #0b3954;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
        z-index: 100;
    }

    .main-nav.active { right: 0; }

    /* Hamburger Animation States */
    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .hero-content h1 { font-size: 3rem; }
    .trips-grid { grid-template-columns: repeat(2, 1fr); max-width: 800px; }
    
    /* Testimonials Mobile Fix */
    .testimonials-container { 
        flex-direction: column; 
        gap: 2rem; 
        width: 100%; 
    }
    .review-card { flex: 0 0 calc(50% - 0.75rem); } 
}

@media (max-width: 992px) {
    .charter-feature-item { flex: 0 0 calc(50% - 1rem); } 
}

@media (max-width: 900px) {
    .about-container { flex-direction: column; text-align: center; }
    .about-images { width: 100%; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-primary, .btn-outline { width: 100%; }
    .review-banner { flex-direction: column; text-align: center; gap: 5px; }
    .angled-divider svg { height: 40px; }
    .trips-grid { grid-template-columns: 1fr; }
    .review-card { flex: 0 0 100%; } 
}

@media (max-width: 600px) {
    .charter-feature-item { flex: 0 0 100%; } 
}

/* Footer */
footer {
    background-color: #171717;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: auto;
}