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

body {
    font-family: 'Bebas Neue', cursive;
    color: white;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

h2 {
    font-family: 'Yellowtail', cursive;
    font-weight: 400;
}

/* Apply Yellowtail to all subtitle elements */
.hero-subtitle,
.about-subtitle,
.reviews-subtitle,
.youtube-section-subtitle,
.gallery-subtitle,
.subtitle,
.carousel-subtitle {
    font-family: 'Yellowtail', cursive !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    color: white !important;
}

/* Specific size for hero subtitle (Discover Mozambique's...) */
.hero-subtitle {
    font-size: 2.25rem;
    font-weight: 100;
}

/* Gallery subtitle should be teal, not white (on white background) */
.gallery-subtitle {
    color: #005B65 !important;
}

.main-content {
    position: relative;
    z-index: 10;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
    pointer-events: none;
}

/* Navigation */
.nav-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.35rem 1.35rem 0.45rem;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.7rem;
    position: relative;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 1.35rem;
    flex: 1;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.nav-link {
    color: white;
    font-size: 1.035rem;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 2.7px;
    background: #007880;
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

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

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

/* Hide active underline on home page, but keep hover */
.home-page-nav .nav-link.active::after {
    width: 0;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    padding-top: 0;
    width: 144px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 27px;
    height: 21.6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 27px;
    height: 2.7px;
    background: white;
    border-radius: 2.7px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9.45px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9.45px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #005B65 0%, #007880 100%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    transform: translateY(-30px);
    transition: transform 0.4s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-menu-logo {
    width: 135px;
    height: auto;
    margin-bottom: 2.7rem;
    animation: fadeInDown 0.5s ease;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-links li {
    margin: 1.35rem 0;
    animation: fadeInUp 0.5s ease;
    animation-fill-mode: both;
}

.mobile-menu-links li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-links li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu-links li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu-links li:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu-links li:nth-child(5) { animation-delay: 0.5s; }
.mobile-menu-links li:nth-child(6) { animation-delay: 0.6s; }
.mobile-menu-links li:nth-child(7) { animation-delay: 0.7s; }

.mobile-menu-links a {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.25rem;
    letter-spacing: 2.7px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    color: #d4af37;
    transform: translateX(9px);
}

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

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

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0.9rem 1.8rem 1.8rem;
    position: relative;
    margin-top: -1.8rem;
    font-size: 14.4px;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    z-index: 100;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator:hover {
    opacity: 0.7;
}

.hero-scroll-indicator svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateY(0); 
    }
    40% { 
        transform: translateY(-9px); 
    }
    60% { 
        transform: translateY(-4.5px); 
    }
}

/* Hero Social Icons */
.hero-social-icons {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    margin-top: 2rem;
    z-index: 10;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1.8px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-4.5px);
}

.social-icon svg {
    transition: transform 0.3s ease;
}

.social-icon:hover svg {
    transform: scale(1.1);
}

.hero-content {
    text-align: center;
    margin-bottom: 3.6rem;
    font-size: 14.4px;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 5.4rem;
    font-weight: 400;
    letter-spacing: 13.5px;

    color: white;
    margin-bottom: 0.9rem;
    min-height: 144px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#typewriter {
    transition: opacity 0.2s ease;
}

.hero-subtitle {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.15rem;
    font-weight: 300;
    letter-spacing: 7.2px;
    color: #bbbbbb;
    margin-bottom: 2.7rem;
}

.hero-buttons {
    display: flex;
    gap: 1.35rem;
    justify-content: center;
    align-items: center;
    font-size: 14.4px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    font-size: 14.4px !important;
    min-height: 43.2px;
    line-height: 1.2;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    font-family: 'Bebas Neue', cursive;
    font-size: 14.4px;
    font-weight: 400;
    letter-spacing: 1.8px;
    padding: 9px 22.5px;
    border-radius: 45px;
    border: 2.7px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: #005B65;
    color: white;
    border-color: #005B65;
}

.btn-secondary:hover {
    background: #007880;
    border-color: #007880;
}

/* Trip Card */
.trip-card {
    background: rgba(245, 245, 245, 0.95);
    border-radius: 18px;
    padding: 0;
    width: 288px;
    position: absolute;
    bottom: 180px;
    right: 36px;
    overflow: visible;
    z-index: 9;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow, opacity;
    opacity: 0;
    transform: translateY(90px);
    animation: slideUpCard 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}

@keyframes slideUpCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trip-card.sticky {
    position: fixed;
    bottom: 18px;
    right: 18px;
    top: auto;
    box-shadow: 0 9px 36px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.trip-card.hidden {
    opacity: 0 !important;
    transform: scale(0.85) translateY(72px) !important;
    pointer-events: none;
    visibility: hidden;
}

.trip-card.hidden * {
    opacity: inherit;
    transition: none;
}

.trip-card-close {
    position: absolute;
    top: -10.8px;
    right: -10.8px;
    background: white;
    border: 2.7px solid #1a1a1a;
    border-radius: 50%;
    width: 32.4px;
    height: 32.4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
    z-index: 10000;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: 0 3.6px 10.8px rgba(0, 0, 0, 0.15);
}

.trip-card-close:hover {
    background: #1a1a1a;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5.4px 14.4px rgba(0, 0, 0, 0.25);
}

.trip-card-close:hover svg {
    color: white;
}

.trip-card-close:active {
    background: #005B65;
    border-color: #005B65;
    transform: scale(0.95);
}

.trip-card-close svg {
    color: #1a1a1a;
    pointer-events: none;
    width: 16.2px;
    height: 16.2px;
    transition: color 0.3s ease;
}

.early-bird-badge {
    background: #005B65;
    color: white;
    font-family: 'Bebas Neue', cursive;
    font-size: 0.855rem;
    font-weight: 400;
    letter-spacing: 1.8px;
    padding: 7.2px 14.4px;
    border-radius: 18px 18px 0 0;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
}

.trip-content {
    padding: 13.5px;
}

.trip-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 2.7px;
    margin-bottom: 1.8px;
    line-height: 1;
}

.trip-date {
    font-family: 'Bebas Neue', cursive;
    font-size: 0.675rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 10.8px;
    letter-spacing: 1.35px;
}

.trip-image-container {
    width: 100%;
    height: 76.5px;
    border-radius: 9px;
    overflow: hidden;
    margin-bottom: 10.8px;
    background: linear-gradient(135deg, #a8d5e2, #7eb5ca);
}

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

.btn-book {
    width: 100%;
    background: white;
    color: #1a1a1a;
    font-family: 'Bebas Neue', cursive;
    font-size: 0.855rem;
    font-weight: 400;
    letter-spacing: 1.8px;
    padding: 9px 27px;
    border-radius: 45px;
    border: 2.7px solid #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-book:hover {
    background: #1a1a1a;
    color: white;
}

/* About Section */
.about-section {
    background: #005B65;
    padding: 6rem 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/tofoimage6.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(3px);
    z-index: -2;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 91, 101, 0.85), rgba(0, 91, 101, 0.85));
    pointer-events: none;
    z-index: -1;
}

/* Slider Section */
.slider-section {
    background: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
}

/* Override for events page - needs wider container */
.slider-section .slider-container:has(.events-grid) {
    max-width: 2600px;
}

.slider-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.slider-image {
    flex: 1;
    max-width: 500px;
}

.slider-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.slider-text-wrapper {
    flex: 1;
}

.slider-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 8px;
    line-height: 1.1;
    color: #005B65;
    margin-bottom: 1.5rem;
}

.slider-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Event Cards */
.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FF6B35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Bebas Neue', cursive;
    font-size: 0.9rem;
    letter-spacing: 2px;
    z-index: 10;
}

.event-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.event-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #005B65;
    margin-bottom: 0.5rem;
}

.event-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.event-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

.event-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.event-includes li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.event-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #005B65;
    margin-bottom: 0.25rem;
}

.event-price-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #FF6B35;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.btn-event-book {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 2px;
    padding: 12px 0;
    width: 100%;
    border-radius: 50px;
    border: 3px solid #005B65;
    background: #005B65;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-event-book:hover {
    background: transparent;
    color: #005B65;
    transform: scale(1.02);
}

.btn-event-waitlist {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 2px;
    padding: 12px 0;
    width: 100%;
    border-radius: 50px;
    border: 3px solid #005B65;
    background: white;
    color: #005B65;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-event-waitlist:hover {
    background: #005B65;
    color: white;
    transform: scale(1.02);
}

.wave-divider {
    width: 100%;
    height: 120px;
    display: block;
    position: absolute;
    top: -119px;
    left: 0;
    transform: scaleY(-1);
}

.wave-divider-bottom {
    width: 100%;
    height: 120px;
    display: block;
    position: absolute;
    bottom: -119px;
    left: 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-content {
    flex: 1;
    color: white;
}

.about-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 8px;
    line-height: 1.1;
    color: rgba(0, 60, 70, 1);
    margin-bottom: 1.5rem;
    transition: color 0.1s ease-out;
}

.about-subtitle {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: #d4af37;
    margin-bottom: 2rem;
    transition: color 0.1s ease-out;
}

.about-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(0, 60, 70, 1);
    margin-bottom: 2rem;
    transition: color 0.1s ease-out;
}

.about-content .btn-primary {
    transition: color 0.1s ease-out, border-color 0.1s ease-out;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2rem;
    display: block;
}

/* Features Section */
.features-section {
    background: white;
    padding: 4rem 0 8rem;
    position: relative;
}

.features-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.features-main-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 8px;
    color: #005B65;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.features-subtitle {
    font-family: 'Yellowtail', cursive;
    font-size: 2rem;
    font-weight: 400;
    color: #d4af37;
    letter-spacing: 0px;
}

.features-container {
    max-width: 2200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    overflow: visible;
    position: absolute;
    width: 350px;
    /* Polaroid styling */
    padding: 15px 15px 60px 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    cursor: pointer;
}

/* Polaroid Stack Positioning - Spread Out */
/* Before reveal, all cards are stacked in center */
.feature-card:nth-child(1):not(.revealed) {
    z-index: 1;
    transform: rotate(0deg) translateX(0) translateY(0) scale(1);
}

.feature-card:nth-child(2):not(.revealed) {
    z-index: 2;
    transform: rotate(0deg) translateX(0) translateY(0) scale(1);
}

.feature-card:nth-child(3):not(.revealed) {
    z-index: 3;
    transform: rotate(0deg) translateX(0) translateY(0) scale(1);
}

.feature-card:nth-child(4):not(.revealed) {
    z-index: 4;
    transform: rotate(0deg) translateX(0) translateY(0) scale(1);
}

/* After reveal, cards are in their final positions */
.feature-card:nth-child(1).revealed {
    z-index: 1;
}

.feature-card:nth-child(2).revealed {
    z-index: 2;
}

.feature-card:nth-child(3).revealed {
    z-index: 3;
}

.feature-card:nth-child(4).revealed {
    z-index: 4;
}

/* Hover effects - bring to front */
.feature-card:hover {
    z-index: 100 !important;
    transform: rotate(0deg) translateY(-20px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Scroll Reveal Animation - Cards slide out from stacked center */
.feature-card.revealed:nth-child(1) {
    animation: slideOutStack1 1.4s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.feature-card.revealed:nth-child(2) {
    animation: slideOutStack2 1.4s cubic-bezier(0.4, 0.0, 0.2, 1) 0.2s forwards;
}

.feature-card.revealed:nth-child(3) {
    animation: slideOutStack3 1.4s cubic-bezier(0.4, 0.0, 0.2, 1) 0.4s forwards;
}

.feature-card.revealed:nth-child(4) {
    animation: slideOutStack4 1.4s cubic-bezier(0.4, 0.0, 0.2, 1) 0.6s forwards;
}

/* Cards start stacked in center and slide out smoothly */
@keyframes slideOutStack1 {
    0% {
        transform: rotate(0deg) translateX(0) translateY(0) scale(1);
    }
    100% {
        transform: rotate(-8deg) translateX(-560px) translateY(-20px) scale(1);
    }
}

@keyframes slideOutStack2 {
    0% {
        transform: rotate(0deg) translateX(0) translateY(0) scale(1);
    }
    100% {
        transform: rotate(5deg) translateX(-180px) translateY(10px) scale(1);
    }
}

@keyframes slideOutStack3 {
    0% {
        transform: rotate(0deg) translateX(0) translateY(0) scale(1);
    }
    100% {
        transform: rotate(-4deg) translateX(180px) translateY(-10px) scale(1);
    }
}

@keyframes slideOutStack4 {
    0% {
        transform: rotate(0deg) translateX(0) translateY(0) scale(1);
    }
    100% {
        transform: rotate(6deg) translateX(560px) translateY(15px) scale(1);
    }
}

.feature-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    border-radius: 8px;
}

.feature-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.9s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.feature-image-primary {
    z-index: 2;
}

.feature-image-secondary {
    z-index: 1;
    transform: translateY(100%);
}

.feature-card:hover .feature-image-primary {
    transform: translateY(-100%);
}

.feature-card:hover .feature-image-secondary {
    transform: translateY(0);
}

.feature-content {
    padding: 1rem 0.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.feature-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.2;
    color: #005B65;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #333;
}

/* Reviews Section */
.reviews-section {
    position: relative;
    min-height: 800px;
    margin-top: 0;
    padding: 6rem 0 6rem;
}

.reviews-video-background {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px);
    z-index: 0;
    overflow: visible;
    background: #005B65;
    clip-path: url(#reviewsWaveClip);
}

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

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.reviews-icon {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 2rem;
    object-fit: contain;
}

.reviews-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.reviews-stars svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.reviews-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 8px;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.reviews-subtitle {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: white;
    margin-bottom: 4rem;
    opacity: 0.9;
    text-align: center;
}

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

.review-card {
    background: rgba(0, 91, 101, 0.8);
    backdrop-filter: blur(10px);
    border-left: 4px solid white;
    padding: 1.5rem;
    border-radius: 8px;
}

.review-card-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: white;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-author strong {
    font-family: 'Yellowtail', cursive;
    font-size: 1.2rem;
    letter-spacing: normal;
    color: white;
}

.review-author span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* YouTube Video Section */
.youtube-video-section {
    background: #005B65;
    padding: 4rem 2rem 10rem;
    text-align: center;
    position: relative;
}

.youtube-video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.youtube-video-section .youtube-video-container {
    position: relative;
    z-index: 2;
}

.youtube-video-container {
    max-width: 900px;
    margin: 0 auto;
}

.youtube-section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: white;
    margin-bottom: 0.75rem;
}

.youtube-section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgb(255, 255, 255);
    margin-bottom: 2rem;
    font-weight: 400;
}

.youtube-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #000;
}

.youtube-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

.youtube-video-section .wave-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    display: block;
    z-index: 3;
}

/* Gallery Carousel Section */
.gallery-section {
    background: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.gallery-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 8px;
    line-height: 1.1;
    color: #005B65;
    margin-bottom: 1.5rem;
}

.gallery-subtitle {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: #005B65;
    opacity: 0.8;
}

/* Carousel Rows */
.gallery-carousel-row {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
}

.gallery-carousel-track {
    display: flex;
    gap: 1.5rem;
    width: fit-content;
}

.gallery-track-fast {
    animation: scrollFast 30s linear infinite;
}

.gallery-track-slow {
    animation: scrollSlow 50s linear infinite;
}

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

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

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

.gallery-carousel-item {
    position: relative;
    width: 350px;
    height: 250px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.gallery-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Footer Section */
.footer {
    background: #003840;
    color: white;
    padding: 4rem 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo-section {
    flex: 1;
    max-width: 300px;
}

.footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.4);
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 1440px) {
    .hero-title {
        font-size: 6.5rem;
    }
    
    .hero-subtitle {
        font-size: 2.2rem;
    }
    
    .trip-card {
        width: 300px;
        right: 40px;
        bottom: 200px;
    }
}

@media (max-width: 1280px) {
    .hero-title {
        font-size: 5.5rem;
        letter-spacing: 10px;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .trip-card {
        width: 280px;
        right: 40px;
        bottom: 200px;
    }
    
    .logo {
        width: 150px;
    }
}



@media (max-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
        letter-spacing: 8px;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        letter-spacing: 6px;
    }
    
    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-left,
    .nav-right {
        gap: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 18px;
        padding: 16px 40px;
    }
    
    /* About Section Responsive */
    .about-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-title {
        font-size: 3rem;
    }
    
    .about-subtitle {
        font-size: 1.5rem;
    }
    
    .about-image {
        max-width: 100%;
    }
    
    .about-image img {
        height: 400px;
    }
    
    /* Slider Section Responsive */
    .slider-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .slider-image {
        max-width: 100%;
    }
    
    .slider-image img {
        height: 400px;
    }
    
    .slider-title {
        font-size: 3rem;
    }
    
    .slider-text {
        font-size: 1rem;
    }
    
    /* Event Cards Responsive */
    .event-title {
        font-size: 1.6rem;
    }
    
    .event-description {
        font-size: 0.95rem;
    }
    
    /* Features Responsive */
    .features-section {
        padding: 3rem 0 6rem;
    }

    .features-header {
        margin-bottom: 2rem;
    }

    .features-main-title {
        font-size: 3rem;
        letter-spacing: 6px;
    }

    .features-subtitle {
        font-size: 1.5rem;
    }

    .features-container {
        min-height: 550px;
        max-width: 1600px;
    }

    .feature-card {
        width: 300px;
    }

    /* Adjust spread for tablet */
    .feature-card:nth-child(1) {
        transform: rotate(-8deg) translateX(-400px) translateY(-15px);
    }
    
    .feature-card:nth-child(2) {
        transform: rotate(5deg) translateX(-120px) translateY(8px);
    }
    
    .feature-card:nth-child(3) {
        transform: rotate(-4deg) translateX(120px) translateY(-8px);
    }
    
    .feature-card:nth-child(4) {
        transform: rotate(6deg) translateX(400px) translateY(12px);
    }

    .feature-image-wrapper {
        height: 240px;
    }

    .feature-image {
        height: 240px;
    }

    .feature-text {
        font-size: 0.7rem;
    }

    .feature-content {
        padding: 1.25rem;
    }

    .feature-title {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .feature-text {
        font-size: 0.85rem;
    }
    
    /* Reviews Responsive */
    .reviews-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .reviews-title {
        font-size: 3rem;
    }
    
    .reviews-subtitle {
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Gallery Responsive */
    .gallery-title {
        font-size: 3rem;
    }
    
    .gallery-subtitle {
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .carousel-slide {
        min-width: calc(50% - 0.75rem);
    }
    
    .carousel-slide img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-left, .nav-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 2rem;
        left: auto;
        top: 2rem;
    }

    .nav-wrapper {
        justify-content: flex-start !important;
        padding-left: 2rem;
    }

    .logo-container {
        justify-content: flex-start !important;
        margin-right: auto;
    }

    .logo {
        width: 100px;
    }
    
    /* Remove sticky behavior for trip card on mobile */
    .trip-card {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        top: auto !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        margin: 30px auto 0 !important;
        width: 90% !important;
        max-width: 360px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    }
    
    .trip-card.sticky {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 30px auto 0 !important;
        width: 90% !important;
        max-width: 360px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    }
    
    .trip-card.hidden,
    .trip-card.sticky.hidden {
        opacity: 0 !important;
        transform: none !important;
        pointer-events: none;
        visibility: hidden;
    }

    .hero-section {
        min-height: 100vh;
        padding: 1rem;
    }

    .hero-social-icons {
        margin-top: 1.5rem;
        gap: 1.2rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 6px;
        margin-top: 4rem;
    }

    .hero-subtitle {
        font-size: 1.6rem !important;
        letter-spacing: 2px;
    }
    
    .hero-content {
        max-width: 100%;
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        font-size: 16px !important;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        font-size: 16px !important;
        min-height: 50px !important;
        line-height: 1.2 !important;
        width: 100% !important;
        max-width: 320px !important;
    }

    .youtube-video-section {
        padding: 3rem 1.5rem 8rem;
    }

    .youtube-section-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .youtube-section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .youtube-video-wrapper {
        border-radius: 12px;
    }

    .youtube-video-wrapper iframe {
        border-radius: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 16px;
        padding: 15px 35px;
        width: 100%;
        max-width: 320px;
    }
    
    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-left,
    .nav-right {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 4rem 0;
    }
    
    .about-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .about-subtitle {
        font-size: 1.3rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-image img {
        height: 300px;
    }
    
    /* Slider Section Mobile */
    .slider-section {
        padding: 4rem 0;
    }
    
    .slider-image img {
        height: 300px;
    }
    
    .slider-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .slider-text {
        font-size: 0.95rem;
    }
    
    /* Event Cards Mobile */
    .slider-section .slider-container:has(.events-grid) {
        padding: 2rem 0 0 !important;
    }
    
    .slider-section .gallery-title {
        text-align: center !important;
        padding: 0 5vw !important;
    }
    
    .events-grid {
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .event-card {
        margin-bottom: 2rem;
        width: 90vw !important;
        max-width: 90vw !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .event-title {
        font-size: 1.5rem;
    }
    
    .event-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .event-description.truncated {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        position: relative;
        margin-bottom: 0.5rem;
    }

    .event-description.expanded {
        display: block;
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }

    .learn-more-btn {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.85rem;
        color: #005B65;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        font-weight: 600;
        text-decoration: underline;
        margin-bottom: 1rem;
        transition: color 0.3s ease;
    }

    .learn-more-btn:hover {
        color: #007880;
    }
    
    .event-price {
        font-size: 1.8rem;
    }
    
    /* Features Mobile */
    .features-section {
        padding: 3rem 0 4rem;
    }

    .features-header {
        margin-bottom: 2rem;
    }

    .features-main-title {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }

    .features-subtitle {
        font-size: 1rem;
    }

    .features-container {
        min-height: auto;
        padding: 0 1.5rem;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .feature-card {
        position: relative !important;
        width: 100%;
        max-width: 340px;
        transform: translateY(30px) !important;
        animation: none !important;
        margin: 0;
        z-index: 1 !important;
        opacity: 0;
        transition: all 0.6s ease-out;
    }

    /* Scroll reveal animation on mobile */
    .feature-card:nth-child(1),
    .feature-card:nth-child(2),
    .feature-card:nth-child(3),
    .feature-card:nth-child(4) {
        transform: translateY(30px) !important;
        animation: none !important;
        z-index: 1 !important;
        opacity: 0;
    }

    .feature-card.revealed:nth-child(1) {
        transform: translateY(0) !important;
        animation: none !important;
        z-index: 1 !important;
        opacity: 1;
        transition-delay: 0s;
    }

    .feature-card.revealed:nth-child(2) {
        transform: translateY(0) !important;
        animation: none !important;
        z-index: 1 !important;
        opacity: 1;
        transition-delay: 0.1s;
    }

    .feature-card.revealed:nth-child(3) {
        transform: translateY(0) !important;
        animation: none !important;
        z-index: 1 !important;
        opacity: 1;
        transition-delay: 0.2s;
    }

    .feature-card.revealed:nth-child(4) {
        transform: translateY(0) !important;
        animation: none !important;
        z-index: 1 !important;
        opacity: 1;
        transition-delay: 0.3s;
    }

    .feature-card.revealed:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
        z-index: 2 !important;
    }

    .feature-image-wrapper {
        height: 220px;
    }

    .feature-image {
        height: 220px;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .feature-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .feature-content {
        padding: 1.25rem;
    }

    .feature-title {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }
    
    .feature-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    /* Reviews Mobile */
    .reviews-section {
        padding: 4rem 0 4rem;
        min-height: auto;
        background: linear-gradient(180deg, #005B65 0%, #004852 100%);
    }

    .reviews-video-background {
        top: 0;
        height: 100%;
        clip-path: none;
        border-radius: 0;
        background: linear-gradient(180deg, rgba(0, 91, 101, 0.9) 0%, rgba(0, 72, 82, 0.9) 100%);
    }

    .reviews-video-background video {
        opacity: 0.4;
    }

    .reviews-container {
        padding: 0 1.5rem;
    }
    
    .reviews-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .reviews-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .reviews-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    /* Gallery Mobile */
    .gallery-section {
        padding: 4rem 0;
    }
    
    .gallery-header {
        margin-bottom: 3rem;
    }
    
    .gallery-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .gallery-subtitle {
        font-size: 1.3rem;
    }
    
    .gallery-carousel-row {
        margin-bottom: 1rem;
    }
    
    .gallery-carousel-item {
        width: 280px;
        height: 200px;
    }
    
    .gallery-carousel-track {
        gap: 1rem;
    }
    
    /* Footer Responsive */
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 3rem;
        padding-bottom: 2rem;
    }
    
    .footer-logo-section {
        max-width: 100%;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 80px;
    }

    .nav-wrapper {
        padding-left: 1.5rem;
    }

    .mobile-menu-toggle {
        right: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
        margin-top: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem !important;
        letter-spacing: 1.5px;
    }
    
    .hero-social-icons {
        margin-top: 1.5rem;
        gap: 1rem;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-content {
        max-width: 100%;
        width: 100%;
    }

    .hero-buttons {
        font-size: 15px !important;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        font-size: 15px !important;
        min-height: 48px !important;
        line-height: 1.2 !important;
        width: 100% !important;
        max-width: 300px !important;
    }
    
    .trip-card,
    .trip-card.sticky {
        width: 90% !important;
        max-width: 340px !important;
    }
    
    .trip-title {
        font-size: 2.5rem;
    }
    
    /* Event Cards Extra Small Mobile */
    .event-card {
        width: 90vw !important;
        max-width: 90vw !important;
    }

    .event-description {
        font-size: 0.85rem;
    }

    /* Features Extra Small Mobile */
    .features-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .feature-card {
        max-width: 100%;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .feature-text {
        font-size: 0.8rem;
    }

    /* Reviews Extra Small Mobile */
    .reviews-section {
        padding: 3rem 0 3rem;
    }

    .reviews-title {
        font-size: 2rem;
    }

    .reviews-subtitle {
        font-size: 1.1rem;
    }
    
    /* Footer Mobile */
    .footer-logo {
        width: 150px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column h3 {
        font-size: 1.2rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-legal span {
        display: none;
    }
}

