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

:root {
    --primary-color: #f8b500;
    --text-color: #222;
    --text-light: #777;
    --white: #fff;
    --bg-light: #f9f9ff;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar {
        z-index: 1001;
    }
}

.navbar.scrolled {
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.navbar.scrolled .logo a {
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar.scrolled .nav-menu a {
    color: var(--white);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a i {
    font-size: 12px;
    transition: transform 0.3s;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: rgba(248, 181, 0, 0.1);
    color: var(--primary-color);
    padding-left: 25px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .hamburger span {
    background: var(--white);
}

/* Hamburger to X animation when active */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

/* Hero Section with Video Background */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    width: 100%;
}

.hero-content-text {
    position: relative;
    text-align: center;
}

.hero-content-text h4 {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content-text h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content-text p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-primary {
    display: inline-block;
    padding: 12px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #e6a500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 181, 0, 0.4);
}


/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-header p {
    font-size: 14px;
    color: var(--text-light);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 25px;
    color: var(--text-color);
}

.why-choose-text p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.why-choose-image {
    position: relative;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
}

.video-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Latest Project Section */
/* Meet the Crew Section */
.meet-team-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fafafa 0%, #f5f7fa 50%, #f0f4f8 100%);
    background-attachment: fixed;
}

.meet-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(248, 181, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(248, 181, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.meet-team-section .container {
    position: relative;
    z-index: 1;
}

.meet-team-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.meet-team-section .section-header h1 {
    color: var(--text-color);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.meet-team-section .section-header h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(248, 181, 0, 0.5) 100%);
    border-radius: 2px;
}

.meet-team-section .section-header p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 700px;
    margin: 32px auto 0;
    line-height: 1.7;
    font-weight: 400;
}

/* Team Carousel */
.team-carousel-wrapper {
    position: relative;
    margin-top: 60px;
    padding: 0 100px;
}

.team-carousel {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.team-carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 35px;
    will-change: transform;
}

.team-card {
    flex: 0 0 calc(33.333% - 24px);
    min-width: 0;
    max-width: calc(33.333% - 24px);
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 8px 30px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    height: 620px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

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

.team-card:nth-child(1) {
    animation-delay: 0.1s;
}

.team-card:nth-child(2) {
    animation-delay: 0.2s;
}

.team-card:nth-child(3) {
    animation-delay: 0.3s;
}

.team-card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    width: 100%;
    overflow: hidden;
    z-index: 0;
    border-radius: 20px 20px 0 0;
}

/* Role-specific background patterns in content area */
.team-info {
    position: relative;
}

.team-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-repeat: repeat;
    background-size: 200px 200px;
    background-position: center;
    pointer-events: none;
    z-index: 0;
}

/* Skipper/Captain - Elegant compass pattern */
.team-card-skipper .team-info::before {
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 24 24' fill='none' stroke='%23f8b500' stroke-width='0.8'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 3v3M12 18v3M3 12h3M18 12h3' stroke-linecap='round'/%3E%3Cpath d='M12 9l-2 2 2 2 2-2z' fill='%23f8b500' opacity='0.3'/%3E%3C/svg%3E");
}

/* Chef - Minimalist utensils pattern */
.team-card-chef .team-info::before {
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 24 24' fill='none' stroke='%23ff6b6b' stroke-width='0.8'%3E%3Cpath d='M8 4v16M8 4c1.5 0 3 0.8 3 2.5v1.5M8 4c-1.5 0-3 0.8-3 2.5v1.5' stroke-linecap='round'/%3E%3Cpath d='M16 4v16M16 4c-1.5 0-3 0.8-3 2.5v1.5M16 4c1.5 0 3 0.8 3 2.5v1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Deckhand - Clean anchor pattern */
.team-card-deckhand .team-info::before {
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 24 24' fill='none' stroke='%234ecdc4' stroke-width='0.8'%3E%3Cpath d='M12 3v5M12 8c-2 0-3.5 1.5-3.5 3.5S10 15 12 15s3.5-1.5 3.5-3.5S14 8 12 8z' stroke-linecap='round'/%3E%3Cpath d='M8.5 11.5c0 1.5 1 2.5 3.5 2.5s3.5-1 3.5-2.5' stroke-linecap='round'/%3E%3Cpath d='M12 15v4' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Mountain Guide - Refined mountain pattern */
.team-card-mountain-guide .team-info::before {
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 24 24' fill='none' stroke='%23a78bfa' stroke-width='0.8'%3E%3Cpath d='M4 20l4-4 3 3 3-4 3 3 3-2v8H4z' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.team-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.team-card:hover .team-bg-image {
    transform: scale(1.05);
}

.team-bg-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.team-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.15) 0%, 
        rgba(0, 0, 0, 0.25) 40%,
        rgba(0, 0, 0, 0.45) 100%
    );
    transition: opacity 0.4s ease;
}

.team-card:hover .team-bg-overlay {
    opacity: 0.9;
}

.team-card-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    min-height: 100%;
}

.team-portrait-wrapper {
    position: absolute;
    top: calc(30% - 65px);
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 5px solid var(--white);
    overflow: hidden;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.2),
        0 3px 12px rgba(0, 0, 0, 0.1);
    background: var(--white);
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card:hover .team-portrait-wrapper {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.3),
        0 6px 20px rgba(0, 0, 0, 0.2);
}

.team-name-role {
    position: absolute;
    top: calc(25% + 150px);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.team-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2) brightness(0.95);
}

.team-portrait-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
    color: #999;
}

.team-portrait-placeholder i {
    font-size: 60px;
    opacity: 0.5;
}

/* Skipper - Gold/Yellow theme */
.team-card-skipper {
    background: var(--white);
    border-top: 4px solid var(--primary-color);
}

.team-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.team-card-skipper:hover {
    box-shadow: 
        0 12px 40px rgba(248, 181, 0, 0.2),
        0 20px 60px rgba(248, 181, 0, 0.15),
        0 0 0 1px rgba(248, 181, 0, 0.1);
}

.team-card-chef:hover {
    box-shadow: 
        0 12px 40px rgba(255, 107, 107, 0.2),
        0 20px 60px rgba(255, 107, 107, 0.15),
        0 0 0 1px rgba(255, 107, 107, 0.1);
}

.team-card-deckhand:hover {
    box-shadow: 
        0 12px 40px rgba(78, 205, 196, 0.2),
        0 20px 60px rgba(78, 205, 196, 0.15),
        0 0 0 1px rgba(78, 205, 196, 0.1);
}

.team-card-mountain-guide:hover {
    box-shadow: 
        0 12px 40px rgba(167, 139, 250, 0.2),
        0 20px 60px rgba(167, 139, 250, 0.15),
        0 0 0 1px rgba(167, 139, 250, 0.1);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid rgba(248, 181, 0, 0.2);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 
        0 8px 30px rgba(248, 181, 0, 0.35),
        0 4px 15px rgba(248, 181, 0, 0.2);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.96);
}

.carousel-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.carousel-btn:hover i {
    transform: scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
    padding: 0;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0;
    position: relative;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    transition: transform 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 16px;
    box-shadow: 
        0 2px 8px rgba(248, 181, 0, 0.4),
        0 0 0 2px rgba(248, 181, 0, 0.1);
}

.carousel-dot.active::before {
    display: none;
}

.carousel-dot:hover {
    background: rgba(248, 181, 0, 0.6);
    transform: scale(1.2);
}


.team-card-skipper .team-bg-placeholder {
    background: linear-gradient(135deg, #f8b500 0%, #e6a500 100%);
}

.team-card-chef .team-bg-placeholder {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.team-card-deckhand .team-bg-placeholder {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.team-card-mountain-guide .team-bg-placeholder {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
}

.team-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-bottom: 18px;
    padding-top: 0;
    padding-bottom: 0;
    flex-shrink: 0;
    width: 100%;
    min-height: 40px;
}

/* Ensure consistent spacing - always reserve space for social section */
.team-info {
    padding-bottom: 0;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8f9fa;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

/* Facebook icon - Facebook blue background */
.social-icon .fa-facebook-f {
    color: #ffffff;
}

.social-icon[title="Facebook"],
.social-icon[title*="Facebook"] {
    background: #1877F2;
    border-color: #1877F2;
}

.social-icon[title="Facebook"]:hover,
.social-icon[title*="Facebook"]:hover {
    background: #166FE5;
    box-shadow: 0 3px 10px rgba(24, 119, 242, 0.3);
    transform: translateY(-2px) scale(1.08);
}

/* Instagram icon - Instagram gradient background */
.social-icon .fa-instagram {
    color: #ffffff;
}

.social-icon[title="Instagram"],
.social-icon[title*="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: none;
}

.social-icon[title="Instagram"]:hover,
.social-icon[title*="Instagram"]:hover {
    background: linear-gradient(45deg, #ff9d4d 0%, #f0785c 25%, #e6395a 50%, #d42a70 75%, #c41a9a 100%);
    box-shadow: 0 3px 10px rgba(220, 39, 67, 0.3);
    transform: translateY(-2px) scale(1.08);
}

/* General hover for other social icons */
.social-icon:hover {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

/* Remove role-specific hover colors for social icons */
.team-card-skipper .social-icon:hover,
.team-card-chef .social-icon:hover,
.team-card-deckhand .social-icon:hover,
.team-card-mountain-guide .social-icon:hover {
    transform: translateY(-2px) scale(1.08);
}

.team-info {
    padding: 90px 24px 100px 24px;
    text-align: center;
    background: var(--white);
    position: absolute;
    top: 30%;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 0 0 20px 20px;
    justify-content: flex-start;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    gap: 0;
    overflow: hidden;
}

/* Front name and role (moved to team-info) */
.team-name-role-front {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 0;
    margin-top: 0;
}

.team-name-front {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    margin-top: 0;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.team-role-front {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    color: var(--text-color);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    justify-content: center;
    padding: 7px 16px;
    background: linear-gradient(135deg, rgba(248, 181, 0, 0.12), rgba(248, 181, 0, 0.06));
    border-radius: 20px;
    border: 1px solid rgba(248, 181, 0, 0.25);
    box-shadow: 0 2px 6px rgba(248, 181, 0, 0.08);
}

.team-role-front i {
    font-size: 14px;
    color: var(--primary-color);
}

/* Read more button - positioned at bottom of card */
.team-read-more {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 24px 22px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 0 0 20px 20px;
}

.btn-read-more {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #1a3d5c 0%, #2a4f6e 100%) !important;
    color: var(--white) !important;
    text-decoration: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(26, 61, 92, 0.3);
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 100 !important;
    white-space: nowrap;
    min-width: 160px;
    text-align: center;
    letter-spacing: 0.3px;
    border: none;
    overflow: hidden;
}

.btn-read-more span,
.btn-read-more i {
    position: relative;
    z-index: 2;
}

.btn-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-read-more:hover::before {
    left: 100%;
}

.btn-read-more:hover {
    background: linear-gradient(135deg, #2a5a7a 0%, #3d6b8f 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(26, 61, 92, 0.4);
}

.btn-read-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-read-more:hover i {
    transform: scale(1.1);
}

.team-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    margin-top: 0;
    transition: all 0.3s ease;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.team-role {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    justify-content: center;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 4px 20px rgba(0, 0, 0, 0.3);
    font-size: 13px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-card-skipper .team-role {
    color: var(--white);
}

.team-card-chef .team-role {
    color: var(--white);
}

.team-card-deckhand .team-role {
    color: var(--white);
}

.team-card-mountain-guide .team-role {
    color: var(--white);
}

.team-role i {
    font-size: 14px;
}


.team-bio {
    display: none; /* Bio is now only shown on detail page */
}

.team-quote {
    margin-top: 0;
    margin-bottom: 18px;
    padding: 14px 16px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    align-self: center;
    width: calc(100% - 48px);
    max-width: 100%;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-card:hover .team-quote {
    transform: translateY(-1px);
}

.team-card-skipper .team-quote {
    background: rgba(248, 181, 0, 0.08);
    border-left: 3px solid var(--primary-color);
}

.team-card-chef .team-quote {
    background: rgba(255, 107, 107, 0.08);
    border-left: 3px solid #ff6b6b;
}

.team-card-deckhand .team-quote {
    background: rgba(78, 205, 196, 0.08);
    border-left: 3px solid #4ecdc4;
}

.team-card-mountain-guide .team-quote {
    background: rgba(167, 139, 250, 0.08);
    border-left: 3px solid #a78bfa;
}

.team-quote i {
    font-size: 12px;
    margin-bottom: 6px;
    display: block;
    opacity: 0.7;
}

.team-card-skipper .team-quote i {
    color: var(--primary-color);
}

.team-card-chef .team-quote i {
    color: #ff6b6b;
}

.team-card-deckhand .team-quote i {
    color: #4ecdc4;
}

.team-card-mountain-guide .team-quote i {
    color: #a78bfa;
}

.team-quote p {
    font-size: 12px;
    font-style: italic;
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.05px;
    max-height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.empty-team-state {
    text-align: center;
    padding: 100px 20px;
    color: var(--text-light);
}

.empty-team-state i {
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.4;
    margin-bottom: 25px;
}

.empty-team-state p {
    font-size: 18px;
    color: var(--text-light);
}

/* Responsive Design for Team Section */
@media (max-width: 1024px) {
    .team-card {
        flex: 0 0 calc(50% - 18px);
        max-width: calc(50% - 18px);
    }
    
    .team-carousel-wrapper {
        padding: 0 70px;
    }
    
    .meet-team-section .section-header h1 {
        font-size: 40px;
    }
    
    .meet-team-section {
        padding: 120px 0;
    }
}

@media (max-width: 768px) {
    .team-card {
        flex: 0 0 100%;
        max-width: 100%;
        height: 580px;
    }
    
    .team-carousel-wrapper {
        padding: 0 60px;
    }
    
    .team-portrait-wrapper {
        width: 110px;
        height: 110px;
        top: calc(30% - 55px);
    }
    
    .team-name-role {
        top: calc(30% - 55px);
    }
    
    .team-info {
        top: 30%;
        padding-top: 70px;
        padding-bottom: 90px;
    }
    
    .team-card-background {
        height: 30%;
    }
    
    .team-name-front {
        font-size: 22px;
    }
    
    .team-quote {
        padding: 12px 14px;
        margin-bottom: 15px;
    }
    
    .team-social {
        margin-bottom: 15px;
    }
    
    .team-name {
        font-size: 22px;
    }
    
    .meet-team-section {
        padding: 100px 0;
    }
    
    .meet-team-section .section-header h1 {
        font-size: 36px;
    }
    
    .meet-team-section .section-header p {
        font-size: 16px;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
    }
    
    .carousel-btn i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .team-carousel-wrapper {
        padding: 0 40px;
    }
    
    .team-image-wrapper {
        height: 280px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(26, 61, 92, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(248, 181, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(26, 61, 92, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

.gallery-carousel-wrapper {
    position: relative;
    margin-top: 50px;
}

.gallery-carousel {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.gallery-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 15px;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
    cursor: pointer;
    position: relative;
}

.gallery-item-inner {
    position: relative;
    width: 100%;
    padding-top: 85%; /* Taller for bigger images while fitting 3 per view */
    overflow: hidden;
    border-radius: 16px;
    background: #000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-item-inner {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img,
.gallery-item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 16px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 24px;
    margin-bottom: 15px;
    transform: scale(0.8);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-item-icon {
    transform: scale(1);
}

.gallery-item-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--text-color);
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.gallery-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

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

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

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.gallery-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

.gallery-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.gallery-empty i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-content {
    width: 90%;
    max-width: 1400px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-media {
    width: 100%;
    height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.lightbox-media video {
    width: 100%;
    height: 100%;
}

.lightbox-info {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
}

.lightbox-counter {
    position: absolute;
    top: 30px;
    left: 30px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.lightbox-thumbnails {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    max-width: 90%;
    overflow-x: auto;
    padding: 10px;
    scrollbar-width: thin;
}

.lightbox-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.lightbox-thumbnail:hover,
.lightbox-thumbnail.active {
    opacity: 1;
    border-color: var(--primary-color);
}

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

@media (max-width: 1024px) {
    .gallery-item {
        flex: 0 0 calc(50% - 8px);
    }
    
    .gallery-carousel-track {
        gap: 12px;
    }
    
    .gallery-nav-prev {
        left: 10px;
    }
    
    .gallery-nav-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-item {
        flex: 0 0 calc(100% - 10px);
    }
    
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .gallery-nav-prev {
        left: 5px;
    }
    
    .gallery-nav-next {
        right: 5px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-content {
        width: 95%;
        height: 95vh;
    }
    
    .lightbox-counter {
        top: 15px;
        left: 15px;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .lightbox-thumbnails {
        bottom: 15px;
        gap: 8px;
    }
    
    .lightbox-thumbnail {
        width: 60px;
        height: 45px;
    }
}

.latest-project-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.project-item:hover {
    transform: translateY(-5px);
}

.project-video {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    padding: 25px;
}

.project-content h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.project-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

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

.feature-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: color 0.3s;
}

.feature-item:hover .feature-icon i {
    color: var(--white);
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.stat-item h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-questions {
    display: grid;
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.faq-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Video Popover Section */
.video-popover-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.video-popover-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.video-popover-content h4 {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 40px;
}

.video-popover-wrapper {
    display: inline-block;
}

.video-popover-trigger {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.video-popover-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(248, 181, 0, 0.4);
}

.video-popover-trigger i {
    font-size: 32px;
    color: var(--white);
    margin-left: 5px;
}

/* Upcoming Tours Section */
.upcoming-tours-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fafafa 0%, #f9f9ff 100%);
    position: relative;
}

.upcoming-tours-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(248, 181, 0, 0.3), transparent);
}

.tours-filters {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.filters-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.filter-select {
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-color);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-select:hover {
    border-color: #d0d0d0;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.15);
    background: #fffef9;
}

.filters-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding-top: 25px;
    margin-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.filters-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #f0f0f0;
    align-items: center;
}

.btn-reset-filters {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    color: var(--text-color);
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-reset-filters:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(248, 181, 0, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(248, 181, 0, 0.2);
}

.btn-reset-filters:active {
    transform: translateY(0);
}

.btn-reset-filters i {
    transition: transform 0.3s;
}

.btn-reset-filters:hover i {
    transform: rotate(180deg);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
}

.checkbox-label:hover {
    background: rgba(248, 181, 0, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.tours-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.empty-state i {
    font-size: 64px;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.empty-state p {
    font-size: 18px;
    color: var(--text-light);
}

.month-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.month-header {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.trip-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.trip-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(248, 181, 0, 0.2);
}

.trip-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: nowrap;
    gap: 15px;
}

.trip-header h4 {
    flex: 1;
    min-width: 0;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    flex-shrink: 1;
}

.trip-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    white-space: nowrap;
    display: inline-block;
    margin-top: 8px;
    width: fit-content;
}

.status-pending {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.status-confirmed {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.status-sold-out {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.trip-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
}

.trip-details-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.trip-details-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.trip-port-status {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trip-port {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.trip-port i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.trip-port-status .trip-status {
    margin-top: 0;
}

.trip-details .trip-details-link {
    margin-top: 8px;
}

.trip-availability {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
    padding: 8px 12px 8px 0;
    background: rgba(248, 181, 0, 0.05);
    border-radius: 8px;
    width: fit-content;
}

.trip-availability i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.trip-availability .sold-out {
    color: #dc3545;
    font-weight: 600;
}

.trip-date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.trip-date i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.trip-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.vessel-type,
.trip-route {
    font-size: 14px;
    color: var(--text-light);
    padding: 6px 12px;
    background: var(--bg-light);
    border-radius: 6px;
}

.trip-footer {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    width: 100%;
    box-sizing: border-box;
    clear: both;
}


.trip-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-shrink: 0;
}

.trip-details-right .trip-price {
    margin: 0;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
}

.trip-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.trip-details-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.trip-details-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.btn-select-cabin {
    padding: 8px 16px;
    background: linear-gradient(135deg, #1a3d5c 0%, #2a4f6e 100%);
    color: var(--white);
    border: none;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(26, 61, 92, 0.2);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.btn-select-cabin:hover {
    background: linear-gradient(135deg, #2a5a7a 0%, #3d6b8f 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 90, 122, 0.4);
}

.btn-select-cabin:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(26, 61, 92, 0.3);
}

.btn-select-cabin.disabled,
.btn-select-cabin:disabled {
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    opacity: 0.6 !important;
    box-shadow: none !important;
}

.btn-select-cabin.disabled:hover,
.btn-select-cabin:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%) !important;
}

/* Our Tours Section */
.our-tours-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.tours-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.tours-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tours-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.tours-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.tours-header {
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
}

.tours-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.tours-header h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tours-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.tours-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.tours-form .form-group {
    margin-bottom: 25px;
}

.tours-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 10px;
}

.tours-form label i {
    color: var(--primary-color);
    font-size: 16px;
}

.tours-form input,
.tours-form select,
.tours-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-color);
    background: var(--white);
    transition: all 0.3s;
}

.tours-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23222' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.tours-form input:focus,
.tours-form select:focus,
.tours-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.1);
}

.tours-form input::placeholder,
.tours-form textarea::placeholder {
    color: #999;
}

.tours-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 30px;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

.privacy-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.privacy-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.privacy-checkbox a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.btn-tours {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(248, 181, 0, 0.4);
}

.btn-tours:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 181, 0, 0.5);
}

.btn-tours:active {
    transform: translateY(0);
}

.btn-tours i {
    transition: transform 0.3s;
}

.btn-tours:hover i {
    transform: translateX(5px);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.contact-form .form-group label i {
    color: var(--primary-color);
    font-size: 16px;
}

.contact-form .form-group label.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--text-color);
    background: #fafafa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Poppins', sans-serif;
}

/* Dates Checkbox Group */
.dates-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    max-height: 300px;
    overflow-y: auto;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    border: 2px solid #e8e8e8;
}

.dates-checkbox-group::-webkit-scrollbar {
    width: 8px;
}

.dates-checkbox-group::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.dates-checkbox-group::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.dates-checkbox-group::-webkit-scrollbar-thumb:hover {
    background: #e6a500;
}

.date-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.date-checkbox:hover {
    background: rgba(248, 181, 0, 0.05);
}

.date-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 5px;
    background: var(--white);
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.date-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.date-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.5;
    flex: 1;
}

.checkbox-label .trip-title {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
    font-style: italic;
}

.no-dates-message {
    padding: 20px;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

/* Submit Button */
.btn-contact-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1a3d5c 0%, #2a4f6e 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(26, 61, 92, 0.2);
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, #2a5a7a 0%, #3d6b8f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 61, 92, 0.3);
}

.btn-contact-submit:active {
    transform: translateY(0);
}

.btn-contact-submit i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-contact-submit:hover i {
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .dates-checkbox-group {
        grid-template-columns: 1fr;
        max-height: 250px;
    }
}

/* Footer */
.footer {
    background: #222;
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-column h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

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

.newsletter-form button {
    padding: 12px 20px;
    background: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #e6a500;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom i {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu a {
        color: var(--text-color) !important;
        justify-content: center;
    }
    
    /* Ensure mobile menu text stays dark even when navbar is scrolled */
    .navbar.scrolled .nav-menu a {
        color: var(--text-color) !important;
    }
    
    .navbar.scrolled .nav-menu a:hover {
        color: var(--primary-color) !important;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Mobile Dropdown Styles */
    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.05);
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }

    .dropdown-menu a {
        padding: 10px 20px;
        color: var(--text-color);
        font-size: 14px;
    }

    .dropdown-menu a:hover {
        background: rgba(248, 181, 0, 0.1);
        padding-left: 25px;
    }

    .hamburger {
        display: flex;
    }

    .tours-header h2 {
        font-size: 36px;
    }

    .tours-header h3 {
        font-size: 24px;
    }

    .tours-form-wrapper {
        padding: 40px 30px;
    }

    .filters-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .filters-checkboxes {
        flex-direction: column;
        gap: 12px;
    }

    .filters-actions {
        justify-content: flex-end;
    }

    .btn-reset-filters {
        width: auto;
        justify-content: center;
    }

    .trip-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .trip-header h4 {
        font-size: 18px;
    }

    /* Hide trip-details-right on mobile/tablet */
    .trip-details-right {
        display: none !important;
    }

    /* Show and style trip-footer on mobile/tablet */
    .trip-footer {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        margin-top: 20px !important;
        padding-top: 20px !important;
        border-top: 1px solid #e0e0e0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Center price in footer */
    .trip-footer .trip-price {
        display: flex !important;
        align-items: baseline !important;
        justify-content: center !important;
        gap: 8px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Style button container in footer */
    .trip-footer .trip-actions {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Style button in footer - full width, below price */
    .trip-footer .trip-actions .btn-select-cabin,
    .trip-footer .btn-select-cabin {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
        text-align: center !important;
        box-sizing: border-box !important;
        display: block !important;
        margin: 0 !important;
        text-decoration: none !important;
        background: linear-gradient(135deg, #1a3d5c 0%, #2a4f6e 100%) !important;
        color: var(--white) !important;
        border: none !important;
        border-radius: 20px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Disabled button state in mobile footer (480px) */
    .trip-footer .trip-actions .btn-select-cabin.disabled,
    .trip-footer .btn-select-cabin.disabled {
        background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%) !important;
        color: rgba(255, 255, 255, 0.7) !important;
        cursor: not-allowed !important;
        pointer-events: none !important;
        opacity: 0.6 !important;
        box-shadow: none !important;
    }
    
    .trip-footer .trip-actions .btn-select-cabin.disabled:hover,
    .trip-footer .btn-select-cabin.disabled:hover {
        transform: none !important;
        box-shadow: none !important;
        background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%) !important;
    }

    .hero-content-text h1 {
        font-size: 40px;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
    }

    .form-row:first-child {
        grid-template-columns: 1fr;
    }

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

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

    .faq-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    /* Force container to not clip content */
    .container {
        overflow: visible !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }
    
    .tours-list {
        overflow: visible !important;
        width: 100% !important;
    }
    
    .filters-row {
        grid-template-columns: 1fr;
    }

    .tours-filters {
        padding: 20px;
    }

    .trip-card {
        padding: 18px;
        overflow: visible !important;
    }

    .trip-header h4 {
        font-size: 16px;
    }

    .trip-details {
        flex-direction: column;
        gap: 15px;
        overflow: visible !important;
    }

    .trip-details-left {
        width: 100%;
    }

    .trip-details-right {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .trip-port-status {
        flex-wrap: wrap;
        gap: 10px;
    }

    .trip-date,
    .trip-port,
    .trip-availability {
        font-size: 12px;
    }

    .trip-status {
        font-size: 10px;
        padding: 4px 8px;
    }

    /* Hide trip-details-right on mobile */
    .trip-details-right {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Show and style trip-footer on mobile */
    .trip-footer {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        margin-top: 20px !important;
        padding-top: 20px !important;
        padding-bottom: 0 !important;
        border-top: 1px solid #e0e0e0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        position: relative !important;
        z-index: 10 !important;
    }

    /* Center price in footer */
    .trip-footer .trip-price {
        display: flex !important;
        align-items: baseline !important;
        justify-content: center !important;
        gap: 8px !important;
        margin: 0 !important;
        padding: 0 !important;
        width: auto !important;
    }

    /* Style button container in footer */
    .trip-footer .trip-actions {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    /* Style button in footer - full width, below price */
    .trip-footer .trip-actions .btn-select-cabin,
    .trip-footer .btn-select-cabin {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
        text-align: center !important;
        box-sizing: border-box !important;
        display: block !important;
        margin: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
        text-decoration: none !important;
        background: linear-gradient(135deg, #1a3d5c 0%, #2a4f6e 100%) !important;
        color: var(--white) !important;
        border: none !important;
        border-radius: 20px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
    }
    
    /* Disabled button state in mobile footer */
    .trip-footer .trip-actions .btn-select-cabin.disabled,
    .trip-footer .btn-select-cabin.disabled {
        background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%) !important;
        color: rgba(255, 255, 255, 0.7) !important;
        cursor: not-allowed !important;
        pointer-events: none !important;
        opacity: 0.6 !important;
        box-shadow: none !important;
    }
    
    .trip-footer .trip-actions .btn-select-cabin.disabled:hover,
    .trip-footer .btn-select-cabin.disabled:hover {
        transform: none !important;
        box-shadow: none !important;
        background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%) !important;
    }

    .price-amount {
        font-size: 20px;
    }

    .price-label {
        font-size: 12px;
    }

    .trip-details-link {
        font-size: 12px;
    }

    .trip-details-link {
        font-size: 12px;
    }

    .tours-header h2 {
        font-size: 28px;
    }

    .tours-header h3 {
        font-size: 20px;
    }

    .tours-form-wrapper {
        padding: 30px 20px;
    }

    .hero-content-text h1 {
        font-size: 32px;
    }

    .section-header h1 {
        font-size: 28px;
    }

    .faq-stats {
        grid-template-columns: 1fr;
    }
}

