/* CSS Variables - SΞNSΞ TRΛVΞL ΛGΞNCY Color Palette */
:root {
    --caribbean-blue: #1E3A8A;      /* Deep luxury blue */
    --ocean-sky: #3B82F6;           /* Vibrant Caribbean blue */
    --tropical-cyan: #06B6D4;       /* Bright tropical accent */
    --coral-reef: #F59E0B;          /* Warm coral accent */
    --dominican-red: #DC2626;       /* Dominican flag red */
    --dominican-white: #FFFFFF;     /* Dominican flag white */
    --seafoam-white: #F0F9FF;       /* Clean blue-tinted white */
    --midnight-navy: #1E293B;       /* Deep navy for text */
    --azure-highlight: #60A5FA;     /* Light blue highlight */
    --sapphire-deep: #1E40AF;       /* Deep sapphire for depth */
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --font-logo: 'Playfair Display', serif;  /* Elegant font for logo */
    
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--midnight-navy);
    background-color: var(--seafoam-white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

/* Body text improvements */
p, li, .about-description, .safety-description {
    line-height: 1.8;
    color: var(--midnight-navy);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--midnight-navy);
}

/* Special styling for SΞNSΞ branding */
.brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--caribbean-blue) 0%, var(--ocean-sky) 50%, var(--tropical-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(30, 58, 138, 0.2));
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--caribbean-blue);
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ocean-sky), var(--caribbean-blue));
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, var(--caribbean-blue), var(--sapphire-deep));
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--caribbean-blue);
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--caribbean-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 1);
}

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

.btn-outline {
    background: transparent;
    color: var(--caribbean-blue);
    border: 2px solid var(--caribbean-blue);
    padding: 12px 24px;
    font-size: 1rem;
}

.btn-outline:hover {
    background: var(--caribbean-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

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

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

.nav-logo a {
    text-decoration: none;
    display: block;
    transition: var(--transition);
    border: none;
    outline: none;
}

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

.nav-logo h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--caribbean-blue);
    margin: 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--caribbean-blue) 0%, var(--ocean-sky) 50%, var(--tropical-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(30, 58, 138, 0.3));
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    outline: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--midnight-navy);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--caribbean-blue), var(--ocean-sky));
    transition: width 0.3s ease;
}

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

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

.cta-button {
    background: var(--ocean-sky);
    color: white !important;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    font-weight: 600;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-width: 160px;
}

.cta-button:hover {
    background: var(--caribbean-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--midnight-navy);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-image.active {
    opacity: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4), rgba(6, 182, 212, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-tagline {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--seafoam-white) 0%, rgba(240, 249, 255, 0.8) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ocean-sky), transparent);
}

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

.about-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--midnight-navy);
    line-height: 1.8;
}

.brand-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.pillar {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid var(--caribbean-blue);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.pillar:nth-child(2),
.pillar:nth-child(3) {
    border-color: var(--dominican-red);
}

.pillar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 49%, var(--dominican-white) 49%, var(--dominican-white) 51%, transparent 51%),
        linear-gradient(0deg, transparent 49%, var(--dominican-white) 49%, var(--dominican-white) 51%, transparent 51%);
    opacity: 0.1;
    pointer-events: none;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--caribbean-blue);
}

.pillar:nth-child(2)::before,
.pillar:nth-child(3)::before {
    background: var(--dominican-red);
}

.pillar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    border-color: var(--caribbean-blue);
}

.pillar:nth-child(2):hover,
.pillar:nth-child(3):hover {
    border-color: var(--dominican-red);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
}

.pillar i {
    font-size: 2.5rem;
    color: var(--caribbean-blue);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.pillar:nth-child(1) i {
    color: var(--caribbean-blue);
}

.pillar:nth-child(2) i {
    color: var(--dominican-red);
}

.pillar:nth-child(3) i {
    color: var(--dominican-red);
}

.pillar:nth-child(4) i {
    color: var(--caribbean-blue);
}

.pillar:hover i {
    transform: scale(1.1);
}

.pillar:nth-child(1):hover i,
.pillar:nth-child(4):hover i {
    color: var(--sapphire-deep);
}

.pillar:nth-child(2):hover i,
.pillar:nth-child(3):hover i {
    color: #B91C1C;
}

.pillar h4 {
    color: var(--midnight-navy);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

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

/* Trips Section */
.trips {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--seafoam-white), var(--azure-highlight));
    position: relative;
}

.trips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ocean-sky), transparent);
}

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

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--caribbean-blue);
    background: transparent;
    color: var(--caribbean-blue);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

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

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

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

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

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

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

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

.trip-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--caribbean-blue);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.trip-badge {
    background: var(--caribbean-blue);
    color: white;
    padding: 6px 10px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trip-content {
    padding: 1.5rem;
}

.trip-content h3 {
    color: var(--midnight-navy);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.trip-content p {
    color: var(--midnight-navy);
    margin-bottom: 1rem;
    opacity: 0.8;
}

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

.trip-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--caribbean-blue);
}

.trip-features i {
    color: var(--caribbean-blue);
}

/* Safety Section with Sliding Pillars */
.safety {
    padding: 100px 0;
    background: var(--seafoam-white);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.safety .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.safety .section-subtitle {
    text-align: center;
    color: var(--midnight-navy);
    margin-bottom: 4rem;
    font-size: 1.2rem;
}

/* Real Trip Moments Section */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--seafoam-white), var(--azure-highlight));
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ocean-sky), transparent);
}

/* Trip Counter */
.trip-counter {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.trip-counter h3 {
    font-size: 2rem;
    color: var(--caribbean-blue);
    margin: 0;
}

#trip-count {
    color: var(--ocean-sky);
    font-weight: 700;
}

/* Upcoming Trip Section */
.upcoming {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--seafoam-white), var(--azure-highlight));
    position: relative;
}

.upcoming::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ocean-sky), transparent);
}

/* Upcoming Trip */
.upcoming-trip {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

.upcoming-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.upcoming-trip h3 {
    color: var(--caribbean-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.trip-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.trip-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trip-dates {
    text-align: center;
    padding: 1rem;
    background: var(--seafoam-white);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--caribbean-blue);
}

.trip-dates h4 {
    color: var(--caribbean-blue);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.trip-dates p {
    color: var(--ocean-sky);
    font-weight: 500;
    margin: 0;
}

.trip-itinerary h4 {
    color: var(--caribbean-blue);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.day-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--seafoam-white);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--ocean-sky);
}

.day-item strong {
    color: var(--caribbean-blue);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.day-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.day-item li {
    padding: 0.3rem 0;
    color: var(--midnight-navy);
    position: relative;
    padding-left: 1.5rem;
}

.day-item li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--ocean-sky);
    font-weight: bold;
}

.trip-perks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trip-perks h4 {
    color: var(--caribbean-blue);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.trip-perks ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trip-perks li {
    padding: 0.5rem 0;
    color: var(--midnight-navy);
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--seafoam-white);
}

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

/* Gallery Preview */
.gallery-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
    padding: 3rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.preview-text h3 {
    color: var(--caribbean-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-right: 1rem;
}

.preview-text p {
    color: var(--midnight-navy);
    line-height: 1.7;
    margin-bottom: 2rem;
    padding-right: 1rem;
}

.preview-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-right: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--caribbean-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--midnight-navy);
    opacity: 0.8;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

.preview-item {
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

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

.gallery-cta {
    grid-column: 1 / -1;
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

/* Dedicated Gallery Page Styles */
.gallery-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--seafoam-white), var(--azure-highlight));
    text-align: center;
}

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

.gallery-description {
    font-size: 1.2rem;
    color: var(--midnight-navy);
    line-height: 1.7;
    margin-top: 1rem;
}

.gallery-categories {
    padding: 60px 0;
    background: white;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    border: 2px solid var(--caribbean-blue);
    background: transparent;
    color: var(--caribbean-blue);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
    background: var(--caribbean-blue);
    color: white;
}

.main-gallery {
    padding: 80px 0;
    background: var(--seafoam-white);
}

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

.gallery-grid-large .gallery-item {
    height: 350px;
}

.gallery-grid-large .gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.gallery-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--caribbean-blue), var(--sapphire-deep));
    color: white;
    text-align: center;
}

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

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

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

/* Pillars Page Styles */
.pillars-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--seafoam-white), var(--azure-highlight));
    text-align: center;
}

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

.pillar-nav {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid var(--ocean-sky);
}

.pillar-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pillar-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    border: 2px solid var(--caribbean-blue);
    background: transparent;
    color: var(--caribbean-blue);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    min-width: 140px;
}

.pillar-tab:nth-child(2),
.pillar-tab:nth-child(3) {
    border-color: var(--dominican-red);
    color: var(--dominican-red);
}

.pillar-tab.active,
.pillar-tab:hover {
    background: var(--caribbean-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.2);
}

.pillar-tab:nth-child(2).active,
.pillar-tab:nth-child(2):hover,
.pillar-tab:nth-child(3).active,
.pillar-tab:nth-child(3):hover {
    background: var(--dominican-red);
    color: white;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
}

.pillar-tab i {
    font-size: 2rem;
}

.pillar-tab span {
    font-size: 1rem;
    font-weight: 600;
}

.pillar-content {
    padding: 80px 0;
    background: var(--seafoam-white);
    min-height: 600px;
    overflow: hidden;
}

.pillar-slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.pillar-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 400%;
    position: relative;
}

.pillar-slide {
    width: 25%;
    flex-shrink: 0;
    padding: 0 50px;
    box-sizing: border-box;
}

.pillar-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 2rem 0;
}

.pillar-text h3 {
    font-size: 2.5rem;
    color: var(--caribbean-blue);
    margin-bottom: 2rem;
    font-weight: 700;
}

.pillar-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--midnight-navy);
    margin-bottom: 3rem;
}

.pillar-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.feature i {
    font-size: 1.5rem;
    color: var(--caribbean-blue);
    margin-top: 0.25rem;
    min-width: 24px;
}

.feature h4 {
    font-size: 1.1rem;
    color: var(--midnight-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature p {
    color: var(--midnight-navy);
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.pillars-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--caribbean-blue), var(--sapphire-deep));
    color: white;
    text-align: center;
}

/* Pillar Navigation Dots */
.pillar-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding: 20px;
    min-height: 60px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--caribbean-blue);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--caribbean-blue);
    transform: scale(1.1);
}

/* Pillar Navigation Arrows */
.pillar-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--caribbean-blue);
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.pillar-nav-btn:hover {
    color: var(--sapphire-deep);
    transform: translateY(-50%) scale(1.2);
}

.pillar-nav-btn.prev {
    left: 0;
}

.pillar-nav-btn.next {
    right: 0;
}

.pillar-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
    backdrop-filter: blur(2px);
}

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

.gallery-overlay p {
    font-style: italic;
    font-size: 1rem;
}

/* Ambassador Section */
.ambassador {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--seafoam-white), var(--azure-highlight));
}

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

.ambassador-info {
    margin: 2rem 0;
}

.role-info,
.perks-info {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--caribbean-blue);
}

.role-info h3,
.perks-info h3 {
    color: var(--caribbean-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.role-info i,
.perks-info i {
    color: var(--coral-reef);
    font-size: 1.1rem;
}

.role-info p,
.perks-info p {
    color: var(--midnight-navy);
    line-height: 1.7;
    margin: 0;
}

.ambassador-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--seafoam-white);
}

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

.contact-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--midnight-navy);
    line-height: 1.8;
}

.contact-form {
    background: linear-gradient(135deg, var(--azure-highlight), var(--tropical-cyan));
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--caribbean-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

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

/* Footer */
.footer {
    background: var(--midnight-navy);
    color: white;
    padding: 3rem 0 1rem;
    overflow-x: hidden;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 100%;
    overflow: hidden;
}

.footer-brand h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--caribbean-blue) 0%, var(--ocean-sky) 50%, var(--tropical-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(30, 58, 138, 0.3));
    transition: all 0.3s ease;
}

.footer-brand p {
    color: var(--azure-highlight);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 100%;
    overflow: hidden;
}

.footer-section h4 {
    color: var(--azure-highlight);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

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

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 100%;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(96, 165, 250, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: var(--azure-highlight);
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    max-width: calc(100vw - 60px);
}

.whatsapp-chat a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.whatsapp-chat a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

/* Desktop Navigation */
@media (min-width: 1025px) {
    .nav-menu {
        display: flex !important;
    }
    
    .hamburger {
        display: none !important;
    }
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Mobile Navigation Layout */
    .nav-container {
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .nav-logo {
        margin-right: auto;
        margin-left: 0;
        flex-shrink: 0;
    }
    
    .nav-logo h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        letter-spacing: clamp(2px, 1vw, 4px);
        text-decoration: none;
        border: none;
        outline: none;
    }
    
    .nav-logo a {
        text-decoration: none;
        border: none;
        outline: none;
    }
    /* Mobile Navigation Layout */
    .nav-container {
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .nav-logo {
        margin-right: auto;
        margin-left: 0.5rem;
    }
    
    /* Navigation */
    .nav-menu {
        display: none !important;
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(240, 249, 255, 0.98), rgba(255, 255, 255, 0.95));
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        padding: 6rem 2rem 4rem;
        z-index: 1000;
        justify-content: flex-start;
        align-items: center;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .nav-menu.active {
        display: flex !important;
        left: 0;
        transform: translateX(0);
        z-index: 9999;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.5s ease forwards;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.6s; }
    .nav-menu li:nth-child(7) { animation-delay: 0.7s; }
    .nav-menu li:nth-child(8) { animation-delay: 0.8s; }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
        display: block;
        border-radius: var(--border-radius);
        transition: all 0.3s ease;
        font-weight: 500;
        color: var(--midnight-navy);
        border: 2px solid transparent;
    }
    
    .nav-menu a:hover {
        background: var(--caribbean-blue);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
    }
    
    .nav-menu .cta-button {
        background: var(--ocean-sky);
        color: white !important;
        border: 2px solid var(--ocean-sky);
        font-weight: 600;
        margin-top: 1rem;
        padding: 14px 28px;
        font-size: 1.1rem;
        min-height: 52px;
        white-space: nowrap;
        min-width: 140px;
    }
    
    .nav-menu .cta-button:hover {
        background: var(--caribbean-blue);
        border-color: var(--caribbean-blue);
        transform: translateY(-2px);
    }
    
    .hamburger {
        display: flex !important;
        cursor: pointer;
        padding: clamp(0.25rem, 1.5vw, 0.4rem);
        z-index: 1001;
        background: rgba(255, 255, 255, 0.95);
        border-radius: clamp(4px, 1vw, 6px);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        position: relative;
        right: 0;
        margin-right: 0;
        flex-shrink: 0;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger span {
        background: var(--midnight-navy);
        width: clamp(18px, 3.5vw, 22px);
        height: clamp(1.5px, 0.6vw, 2.5px);
        margin: clamp(1.5px, 0.4vw, 2.5px) 0;
        border-radius: 1px;
        transition: all 0.3s ease;
    }
    
    .hamburger.active span {
        background: var(--caribbean-blue);
    }
    
    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Slide In Animation */
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 24px;
        font-size: 1.1rem;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .brand-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pillar {
        padding: 1.5rem 1rem;
        min-height: 140px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .pillar i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .pillar h4 {
        font-size: 1.1rem;
    }
    
    /* Experiences Section */
    .trips-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trip-card {
        margin: 0;
        border-radius: 16px;
        overflow: hidden;
    }
    
    .trip-image {
        height: 250px;
    }
    
    .trip-content {
        padding: 1.5rem;
    }
    
    .trip-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .trip-features {
        gap: 0.8rem;
        margin: 1.5rem 0;
    }
    
    .trip-features span {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }
    
    /* Gallery Section */
    .gallery-preview {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .preview-text h3 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
        padding-right: 0;
        text-align: center;
    }
    
    .preview-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding-right: 0;
        text-align: center;
    }
    
    .preview-stats {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 1.5rem;
        padding-right: 0;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .gallery-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .gallery-cta .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        min-height: 52px;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    /* Sliding Pillars */
    .pillar-slider-container {
        padding: 0 20px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .pillar-slide {
        padding: 0 30px;
        box-sizing: border-box;
    }
    
    .pillar-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .pillar-text h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .pillar-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .pillar-features {
        gap: 1.5rem;
    }
    
    .feature {
        gap: 1rem;
    }
    
    .feature i {
        font-size: 1.3rem;
        min-width: 28px;
    }
    
    .feature h4 {
        font-size: 1rem;
    }
    
    .pillar-image img {
        height: 280px;
        border-radius: 12px;
    }
    
    .pillar-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .pillar-dots {
        margin-top: 2rem;
        gap: 10px;
        padding: 15px;
        min-height: 50px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    /* Upcoming Section */
    .upcoming-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .upcoming-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .upcoming-cta .btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 24px;
        min-height: 56px;
    }
    
    /* Ambassador Section */
    .ambassador-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ambassador-info {
        margin: 1.5rem 0;
    }
    
    .role-info,
    .perks-info {
        margin-bottom: 1.5rem;
        padding: 1.2rem;
    }
    
    .role-info h3,
    .perks-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .role-info p,
    .perks-info p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .ambassador-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .ambassador-cta .btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 24px;
        min-height: 56px;
    }
    
    .ambassador-image img {
        height: 300px;
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px;
        font-size: 1rem;
        min-height: 56px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    
    /* WhatsApp Button */
    .whatsapp-chat {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-chat a {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Footer Mobile Optimizations */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-brand h3 {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.3rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Small Mobile Navigation Layout */
    .nav-container {
        justify-content: flex-start;
        gap: 0.5rem;
    }
    
    .nav-logo {
        margin-right: auto;
        margin-left: -0.5rem;
    }
    
    /* Mobile Menu Small Screen */
    .nav-menu {
        padding: 5rem 1.5rem 4rem;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex !important;
        padding: clamp(0.2rem, 1.2vw, 0.3rem);
        background: rgba(255, 255, 255, 0.95);
        border-radius: clamp(3px, 0.8vw, 5px);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
        position: relative;
        right: 0;
        margin-right: 0;
        min-width: 40px;
        min-height: 40px;
    }
    
    .hamburger span {
        width: clamp(18px, 3.5vw, 22px);
        height: clamp(1.5px, 0.6vw, 2.5px);
        margin: clamp(1px, 0.4vw, 2px) 0;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
    }
    
    .hero-cta .btn {
        max-width: 280px;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .brand-pillars {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pillar {
        padding: 1.2rem 1rem;
        min-height: 120px;
    }
    
    .trip-image {
        height: 200px;
    }
    
    .trip-content {
        padding: 1.2rem;
    }
    
    .trip-content h3 {
        font-size: 1.3rem;
    }
    
    .pillar-text h3 {
        font-size: 1.8rem;
    }
    
    .pillar-image img {
        height: 240px;
    }
    
    .pillar-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .preview-item {
        height: 160px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    /* Ambassador Section */
    .ambassador-content {
        gap: 2rem;
    }
    
    .role-info,
    .perks-info {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .role-info h3,
    .perks-info h3 {
        font-size: 1rem;
    }
    
    .role-info p,
    .perks-info p {
        font-size: 0.95rem;
    }
    
    .ambassador-cta .btn {
        max-width: 280px;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .ambassador-image img {
        height: 250px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .whatsapp-chat {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-chat a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta .btn {
        max-width: 260px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .whatsapp-chat {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-chat a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Smooth scrolling and animations */
.trip-card,
.gallery-item,
.pillar {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Loading animation for images */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Ambassador Page Styles */
.ambassador-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ambassador-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ambassador-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

.ambassador-hero .hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.6), rgba(6, 182, 212, 0.4));
}

.ambassador-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.ambassador-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ambassador-hero .hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--azure-highlight);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ambassador-hero .hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--azure-highlight);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Program Overview */
.program-overview {
    padding: 100px 0;
    background: var(--seafoam-white);
}

.overview-content {
    text-align: center;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--caribbean-blue);
}

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

.benefit-card i {
    font-size: 2.5rem;
    color: var(--coral-reef);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--caribbean-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--midnight-navy);
    line-height: 1.6;
}

/* Role Details */
.role-details {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--seafoam-white), var(--azure-highlight));
}

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

.role-sections {
    margin-top: 2rem;
}

.role-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--caribbean-blue);
}

.role-section h3 {
    color: var(--caribbean-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.role-section i {
    color: var(--coral-reef);
    font-size: 1rem;
}

.role-section p {
    color: var(--midnight-navy);
    line-height: 1.7;
    margin: 0;
}

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

/* Application Form */
.application-form {
    padding: 100px 0;
    background: var(--seafoam-white);
}

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

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(96, 165, 250, 0.2);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: var(--caribbean-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--azure-highlight);
    padding-bottom: 0.5rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(96, 165, 250, 0.2);
    border-radius: var(--border-radius);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--caribbean-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

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

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    margin-top: 1rem;
    color: var(--midnight-navy);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Active navigation state */
.nav-menu a.active {
    color: var(--caribbean-blue);
    font-weight: 600;
}

/* Responsive styles for ambassador page */
@media (max-width: 768px) {
    .ambassador-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .ambassador-hero .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .role-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .ambassador-form {
        padding: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* Real Trip Moments Mobile */
    .trip-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .upcoming-trip {
        padding: 1.5rem;
    }
    
    .upcoming-trip h3 {
        font-size: 1.5rem;
    }
    
    .trip-counter h3 {
        font-size: 1.5rem;
    }
    
    .day-item {
        padding: 0.8rem;
    }
    
    .trip-perks li {
        padding: 0.4rem 0;
        padding-left: 1.2rem;
    }
    
    .upcoming-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .upcoming-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .gallery-preview {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem 1.5rem;
        border-radius: 16px;
        margin: 2rem 0;
    }
    
    .preview-text h3 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .preview-text p {
        font-size: 1.1rem;
        text-align: center;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .preview-stats {
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }
    
    .stat {
        min-width: 90px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--caribbean-blue);
        display: block;
        margin-bottom: 0.3rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
        color: var(--midnight-navy);
        font-weight: 500;
    }
    
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .preview-item {
        aspect-ratio: 1;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.05);
        overflow: hidden;
        position: relative;
    }
    
    .preview-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .preview-item:hover img {
        transform: scale(1.05);
    }
    
    .gallery-cta {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        align-items: center;
    }
    
    .gallery-cta .btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 24px;
        min-height: 56px;
        font-size: 1.1rem;
        border-radius: 12px;
        font-weight: 600;
    }
    
    .pillar-tabs {
        gap: 0.5rem;
    }
    
    .pillar-tab {
        padding: 1rem 1.5rem;
        min-width: 120px;
    }
    
    .pillar-tab i {
        font-size: 1.5rem;
    }
    
    .pillar-tab span {
        font-size: 0.9rem;
    }
    
    .pillar-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pillar-text h2 {
        font-size: 2rem;
    }
    
    .pillar-image img {
        height: 300px;
    }
    
    .pillar-slider-container {
        padding: 0 20px;
        overflow: hidden;
    }
    
    .pillar-slide {
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .pillar-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .pillar-dots {
        margin-top: 30px;
        padding: 10px;
        min-height: 40px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .ambassador-hero .hero-title {
        font-size: 2rem;
    }
    
    .ambassador-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .ambassador-form {
        padding: 1.5rem;
    }
    
    /* Real Trip Moments Mobile Small */
    .upcoming-trip {
        padding: 1rem;
    }
    
    .upcoming-trip h3 {
        font-size: 1.3rem;
    }
    
    .trip-counter {
        padding: 1.5rem;
    }
    
    .trip-counter h3 {
        font-size: 1.3rem;
    }
    
    .trip-dates h4 {
        font-size: 1.1rem;
    }
    
    .day-item strong {
        font-size: 1rem;
    }
    
    .day-item li {
        padding: 0.2rem 0;
        padding-left: 1rem;
        font-size: 0.9rem;
    }
    
    .trip-perks li {
        padding: 0.3rem 0;
        padding-left: 1rem;
        font-size: 0.9rem;
    }
    
    /* Gallery Preview Small Mobile */
    .gallery-preview {
        padding: 1.5rem 1rem;
        gap: 2.5rem;
        border-radius: 16px;
        margin: 1.5rem 0;
    }
    
    .preview-text h3 {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 1rem;
        line-height: 1.3;
        color: var(--midnight-navy);
    }
    
    .preview-text p {
        font-size: 1rem;
        text-align: center;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: var(--midnight-navy);
    }
    
    .preview-stats {
        gap: 1.2rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }
    
    .stat {
        min-width: 80px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--caribbean-blue);
        display: block;
        margin-bottom: 0.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        color: var(--midnight-navy);
        font-weight: 500;
    }
    
    .preview-grid {
        gap: 0.8rem;
        margin-bottom: 2rem;
        grid-template-columns: repeat(2, 1fr);
        aspect-ratio: 1;
    }
    
    .preview-item {
        aspect-ratio: 1;
        border-radius: 10px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.05);
        overflow: hidden;
        position: relative;
    }
    
    .preview-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .preview-item:hover img {
        transform: scale(1.05);
    }
    
    .gallery-cta {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        align-items: center;
    }
    
    .gallery-cta .btn {
        max-width: 280px;
        padding: 14px 20px;
        min-height: 52px;
        font-size: 1rem;
        border-radius: 12px;
        font-weight: 600;
        width: 100%;
    }
} 