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

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fefefe;
    overflow-x: hidden;
}

::selection {
    background: rgba(46, 163, 242, 0.2);
}

html {
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(254, 254, 254, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.nav-logo img {
    height: 55px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, #2ea3f2, transparent);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.nav-menu a:hover {
    color: #2ea3f2;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 120px; /* Add padding to account for navbar */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.6) 0%, rgba(46, 163, 242, 0.3) 50%, rgba(26, 35, 50, 0.7) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    min-height: calc(100vh - 120px);
    padding-top: 40px;
}

.hero-content {
    text-align: right;
    color: white;
    margin-left: auto;
    margin-right: 0;
    position: relative;
    top: 80px; /* Move content higher up */
    margin-bottom: 60px;
}

.hero h1 {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.05;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #2ea3f2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 50px !important;
    line-height: 1.7 !important;
    font-weight: 300 !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    letter-spacing: 0.01em !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.hero-btn {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #2c3e50 !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #2ea3f2 0%, #1976d2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(46, 163, 242, 0.25);
}

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

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

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(46, 163, 242, 0.35);
}

.btn-secondary {
    background: rgba(46, 163, 242, 0.05);
    color: #2ea3f2;
    border: 1px solid rgba(46, 163, 242, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #2ea3f2;
    color: white;
    border-color: #2ea3f2;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(46, 163, 242, 0.25);
}

.btn-full {
    width: 100%;
}


/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, #fefefe 0%, #f9fafb 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 163, 242, 0.1), transparent);
}

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

.about-logo {
    margin-bottom: 30px;
}

.about-logo img {
    height: 120px;
    width: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.about-logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

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

.about h2 {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 3.2rem;
    color: #1a2332;
    margin-bottom: 0;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-transform: uppercase;
}

.about-description-centered {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 50px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.about p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 24px;
    line-height: 1.75;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.offerings {
    margin: 30px 0;
}

.offerings h3 {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 1.6rem;
    color: #1a2332;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.offering-item {
    margin-bottom: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(46, 163, 242, 0.08);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.offering-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(46, 163, 242, 0.15);
}

.offering-item h4 {
    color: #1a2332;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.about-description {
    font-size: 1.2rem;
    font-weight: 400;
    color: #1a2332;
    font-style: italic;
    padding: 25px 0;
    border-top: 1px solid rgba(46, 163, 242, 0.1);
    margin-top: 25px;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-images img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: saturate(1.1) contrast(1.02);
}

.about-images img:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    filter: saturate(1.15) contrast(1.05);
}

/* Crew Section */
.crew {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 50%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.crew::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(46, 163, 242, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.crew h2 {
    text-align: center;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 3rem;
    margin-bottom: 70px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.crew-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.crew-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.crew-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.crew-number {
    display: block;
    font-family: 'EB Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2ea3f2;
    text-shadow: 0 2px 10px rgba(46, 163, 242, 0.3);
}

.crew-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Why Charter Section */
.why-charter {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.why-charter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(46, 163, 242, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.why-charter h2 {
    text-align: center;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #1a2332;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 60px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.why-charter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.why-charter-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.why-charter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 163, 242, 0.05) 0%, rgba(46, 163, 242, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-charter-item:hover::before {
    opacity: 1;
}

.why-charter-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.why-charter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #2ea3f2 0%, #1e88e5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(46, 163, 242, 0.3);
    transition: all 0.4s ease;
}

.why-charter-item:hover .why-charter-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(46, 163, 242, 0.4);
}

.why-charter-item h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.why-charter-item p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    font-weight: 400;
}

/* Why Visit Cartagena Section */
.why-visit-cartagena {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-visit-cartagena::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(46, 163, 242, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.why-visit-cartagena h2 {
    text-align: center;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #1a2332;
    text-transform: uppercase;
}

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

.why-visit-content:last-child {
    margin-bottom: 0;
}

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

.why-visit-content.reverse .why-visit-text {
    order: 2;
}

.why-visit-content.reverse .why-visit-image {
    order: 1;
}

.why-visit-text p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
}

.why-visit-text p:last-child {
    margin-bottom: 0;
}

.why-visit-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.why-visit-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.why-visit-image:hover img {
    transform: scale(1.05);
}

/* Amenities Section */
.amenities {
    padding: 120px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #f4f6f8 100%);
    position: relative;
}

.amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 163, 242, 0.1), transparent);
}

.amenities h2 {
    text-align: center;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 3.2rem;
    color: #1a2332;
    margin-bottom: 80px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

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

.amenity-category {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.amenity-category:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.amenity-category h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.8rem;
    color: #1a2332;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 15px;
}

.amenity-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #2ea3f2, #1976d2);
    border-radius: 1px;
}

.amenity-category ul {
    list-style: none;
}

.amenity-category li {
    padding: 8px 0;
    color: #7f8c8d;
    font-weight: 500;
    position: relative;
    padding-left: 25px;
}

.amenity-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ea3f2;
    font-weight: bold;
    font-size: 1.1em;
}

/* Amenities Carousel */
.amenities-carousel {
    margin-top: 60px;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.05);
    transition: all 0.3s ease;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 30px 25px;
    text-align: center;
}

.carousel-caption h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.carousel-caption p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.01em;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #2ea3f2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(46, 163, 242, 0.9);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(46, 163, 242, 0.3);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(46, 163, 242, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-indicator.active {
    background: #2ea3f2;
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background: #2ea3f2;
    transform: scale(1.1);
}

/* Included Section */
.included {
    padding: 120px 0;
    background: linear-gradient(135deg, #2ea3f2 0%, #1976d2 50%, #1565c0 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.included::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.included h2 {
    text-align: center;
    font-family: 'EB Garamond', serif;
    font-size: 3.2rem;
    margin-bottom: 80px;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

.included-item {
    text-align: center;
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.included-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}


.included-item p {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/* Schedule Section */
.schedule {
    padding: 80px 0;
    background: white;
}

.schedule h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
}

.schedule-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-top: 4px solid #3498db;
}

.schedule-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.schedule-item p {
    font-size: 1.5rem;
    color: #3498db;
    font-weight: 700;
}

/* Destinations Section */
.destinations {
    padding: 120px 0;
    background: linear-gradient(180deg, #fefefe 0%, #f9fafb 100%);
    position: relative;
}

.destinations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 163, 242, 0.1), transparent);
}

.destinations h2 {
    text-align: center;
    font-family: 'EB Garamond', serif;
    font-size: 3.8rem;
    color: #1a2332;
    margin-bottom: 80px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

.destination-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.destination-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.destination-content {
    padding: 30px;
    text-align: center;
}

.destination-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.destination-card h3 {
    font-family: 'EB Garamond', serif;
    font-size: 2.2rem;
    color: #1a2332;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.destination-card p {
    color: #5a6c7d;
    font-size: 1.15rem;
    line-height: 1.75;
    font-weight: 300;
    letter-spacing: 0.01em;
}



/* Booking Section */
.booking {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 50%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(46, 163, 242, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(46, 163, 242, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.booking h2 {
    text-align: center;
    font-family: 'EB Garamond', serif;
    font-size: 3.8rem;
    margin-bottom: 80px;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.booking-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-form {
    background: rgba(255, 255, 255, 0.08);
    padding: 50px;
    border-radius: 28px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.3);
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pricing-info,
.payment-methods {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px 35px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-info:hover,
.payment-methods:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-info h3,
.payment-methods h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.7rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #2ea3f2;
    letter-spacing: -0.01em;
}

.pricing-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.pricing-note {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
    margin-top: 15px;
}

/* New Booking Form Styles */
.trip-summary-display {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trip-summary-display h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2ea3f2;
    text-align: center;
}

.summary-grid {
    display: grid;
    gap: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item strong {
    color: #2ea3f2;
    font-weight: 600;
}

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

.form-section h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #2ea3f2;
    border-bottom: 2px solid rgba(46, 163, 242, 0.3);
    padding-bottom: 8px;
}

.payment-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-info p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.payment-breakdown {
    display: grid;
    gap: 10px;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-item:last-child {
    border-bottom: none;
}

.payment-item span:first-child {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.payment-item span:last-child {
    color: #2ea3f2;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Read-only input styling */
.form-group input[readonly] {
    background: rgba(255, 255, 255, 0.7);
    color: #2c3e50;
    font-weight: 500;
    cursor: not-allowed;
}

.form-group input[readonly]:focus {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: none;
}

/* Trip Builder Notification */
.trip-builder-notification {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
    animation: slideDown 0.5s ease-out;
}

.trip-builder-notification .notification-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trip-builder-notification svg {
    color: white;
    flex-shrink: 0;
}

.trip-builder-notification .notification-text {
    flex: 1;
}

.trip-builder-notification h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.trip-builder-notification p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.trip-builder-notification .notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.trip-builder-notification .notification-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

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

.payment-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-icons span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, #fefefe 0%, #f9fafb 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 163, 242, 0.1), transparent);
}

.contact h2 {
    text-align: center;
    font-family: 'EB Garamond', serif;
    font-size: 3.2rem;
    color: #1a2332;
    margin-bottom: 70px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(46, 163, 242, 0.06);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(46, 163, 242, 0.12);
}

.contact-item h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    color: #1a2332;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.contact-item p {
    font-size: 1.1rem;
}

.contact-item a {
    color: #2ea3f2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.contact-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: #2ea3f2;
    transition: width 0.3s ease;
}

.contact-item a:hover::after {
    width: 100%;
}

.contact-item a:hover {
    color: #1976d2;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 163, 242, 0.2), transparent);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.footer-logo img {
    height: 45px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #2ea3f2;
    transform: translateY(-1px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

/* Advanced Luxury Effects */
.luxury-shimmer {
    position: relative;
    overflow: hidden;
}

.luxury-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Subtle Parallax Effect */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2ea3f2, #1976d2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1976d2, #1565c0);
}

/* Loading States */
.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Image Loading States */
img {
    opacity: 0;
    transition: opacity 0.2s ease;
}

img.loaded {
    opacity: 1;
}

img[src=""] {
    opacity: 0;
}

/* Enhanced Focus States */
*:focus {
    outline: 2px solid rgba(46, 163, 242, 0.5);
    outline-offset: 2px;
}

/* Glass Morphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Luxury Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #2ea3f2 0%, #1976d2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Scroll Animations - Faster */
@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(30px);
    }
    50% {
        opacity: 1;
        transform: scale(1.02) translateY(0);
    }
    70% {
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Animation classes for different entrance effects - Perfect Speed */
.animate-slide-up {
    animation: slideInFromBottom 0.35s ease-out forwards;
}

.animate-slide-left {
    animation: slideInFromLeft 0.35s ease-out forwards;
}

.animate-slide-right {
    animation: slideInFromRight 0.35s ease-out forwards;
}

.animate-fade-scale {
    animation: fadeInScale 0.3s ease-out forwards;
}

.animate-bounce-in {
    animation: bounceIn 0.4s ease-out forwards;
}

/* Enhanced hover effects for animated elements */
.amenity-category:hover,
.destination-card:hover,
.service-card:hover,
.why-charter-item:hover,
.contact-item:hover {
    transform: translateY(-8px) scale(1.02);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Staggered animation delays - Perfect Speed */
.animate-delay-1 { animation-delay: 0s; }
.animate-delay-2 { animation-delay: 0s; }
.animate-delay-3 { animation-delay: 0s; }
.animate-delay-4 { animation-delay: 0s; }
.animate-delay-5 { animation-delay: 0s; }

/* Enhanced image animations */
.about-images img,
.destination-image img,
.service-image img,
.why-visit-image img {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-images img:hover,
.destination-image img:hover,
.service-image img:hover,
.why-visit-image img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced title animations */
.about h2,
.amenities h2,
.destinations h2,
.booking h2,
.why-charter h2,
.crew h2,
.included h2,
.schedule h2,
.contact h2 {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hero section enhanced animations - Perfect Speed */
.hero-title {
    animation: slideInFromBottom 0.4s ease-out 0.1s both;
}

.hero-subtitle {
    animation: slideInFromBottom 0.4s ease-out 0.2s both;
}

.hero-buttons {
    animation: slideInFromBottom 0.4s ease-out 0.3s both;
}

/* Parallax effect for background images */
.hero-background img {
    transition: transform 0.3s ease;
}

.hero:hover .hero-background img {
    transform: scale(1.05);
}

/* Enhanced loading states */
.loading-animation {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Smooth reveal animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Performance optimizations */
.animate-on-scroll {
    will-change: transform, opacity;
}

/* Immediate loading for all sections */
section {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

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

    .nav-menu li {
        margin: 15px 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .hero h1 {
        font-size: 3.2rem;
        line-height: 1.1;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-logo img {
        height: 100px;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .why-charter-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-visit-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-visit-content.reverse .why-visit-text,
    .why-visit-content.reverse .why-visit-image {
        order: unset;
    }
    
    .why-visit-image img {
        height: 300px;
    }
    
    .carousel-slide img {
        height: 300px;
    }
    
    .carousel-caption {
        padding: 30px 20px 20px;
    }
    
    .carousel-caption h4 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn-prev {
        left: 15px;
    }
    
    .carousel-btn-next {
        right: 15px;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-image {
        height: 180px;
    }
    
    .service-image {
        height: 160px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links,
    .footer-social {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    .about h2,
    .amenities h2,
    .destinations h2,
    .booking h2,
    .why-charter h2 {
        font-size: 2.8rem;
        margin-bottom: 50px;
    }

    .crew h2,
    .included h2,
    .schedule h2,
    .contact h2 {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    .container {
        padding: 0 20px;
    }

    .booking-form,
    .amenity-category,
    .destination-card {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .hero {
        padding: 140px 20px 60px;
    }
    
    .about, .amenities, .destinations, .booking, .why-charter, .why-visit-cartagena {
        padding: 80px 0;
    }
    
    .crew, .included, .contact {
        padding: 80px 0;
    }
    
        .btn {
        padding: 16px 32px;
        font-size: 0.95rem;
    }
    
    .language-toggle {
        top: 80px;
        right: 15px;
        padding: 6px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 35px;
    }

/* Old Language Toggle - Removed in favor of floating toggle */

/* Floating Language Toggle */
.floating-language-toggle {
    position: fixed;
    top: 120px;
    right: 20px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 4px;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
    pointer-events: auto;
}

.floating-language-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

.floating-lang-btn {
    background: transparent;
    border: none;
    border-radius: 25px;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.floating-lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 163, 242, 0.1), transparent);
    transition: left 0.6s;
}

.floating-lang-btn:hover::before {
    left: 100%;
}

.floating-lang-btn.active {
    background: linear-gradient(135deg, #2ea3f2 0%, #1e88e5 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 163, 242, 0.3);
    transform: scale(1.05);
}

.floating-lang-btn:hover:not(.active) {
    background: rgba(46, 163, 242, 0.1);
    color: #2ea3f2;
    transform: scale(1.02);
}

.lang-flag {
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.lang-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhanced floating animation */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-8px) rotate(1deg); 
    }
}

/* Responsive design for floating toggle */
@media (max-width: 768px) {
    .floating-language-toggle {
        top: 100px;
        right: 15px;
        padding: 6px;
    }
}

/* Ensure toggle is always visible on desktop */
@media (min-width: 769px) {
    .floating-language-toggle {
        top: 120px;
        right: 20px;
        padding: 8px;
        z-index: 9999;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}
    
    .floating-lang-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: 45px;
    }
    
    .lang-flag {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .floating-language-toggle {
        top: 90px;
        right: 10px;
        padding: 5px;
    }
    
    .floating-lang-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
        min-width: 40px;
    }
    
    .lang-flag {
        font-size: 0.9rem;
    }
    
    .lang-text {
        font-size: 0.7rem;
    }
}

/* Build Your Trip Section Styles */
.build-trip {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.build-trip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(46, 163, 242, 0.05) 0%, transparent 60%),
                radial-gradient(circle at 70% 30%, rgba(46, 163, 242, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.build-trip h2 {
    text-align: center;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.build-trip h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #2ea3f2, #1e88e5);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(46, 163, 242, 0.3);
}

.trip-builder {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.trip-builder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 163, 242, 0.3), transparent);
}

.trip-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid rgba(46, 163, 242, 0.1);
    position: relative;
}

.trip-progress::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 163, 242, 0.2), transparent);
}

.trip-progress-step {
    text-align: center;
    padding: 18px 15px;
    font-weight: 600;
    color: #64748b;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.trip-progress-step:hover {
    color: #2ea3f2;
    background: rgba(46, 163, 242, 0.05);
}

.trip-progress-step.active {
    color: #1e293b;
    background: linear-gradient(135deg, rgba(46, 163, 242, 0.1) 0%, rgba(46, 163, 242, 0.05) 100%);
    box-shadow: inset 0 1px 3px rgba(46, 163, 242, 0.1);
}

.trip-progress-step.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #2ea3f2, #1e88e5);
    box-shadow: 0 2px 10px rgba(46, 163, 242, 0.3);
}

.trip-step {
    padding: 50px;
    transition: all 0.4s ease;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.trip-step.hidden {
    display: none;
}

.hidden {
    display: none !important;
}

.trip-step h3 {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.trip-step h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #2ea3f2, #1e88e5);
    border-radius: 1px;
}

/* Destination Selection Styles */
.destination-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.destination-option {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.destination-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-option.selected {
    border-color: #2ea3f2;
    box-shadow: 0 15px 35px rgba(46, 163, 242, 0.2);
}

.destination-option img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-option h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 20px 20px 10px;
}

.destination-option p {
    color: #64748b;
    margin: 0 20px 15px;
    line-height: 1.6;
}

.destination-option .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2ea3f2;
    margin: 0 20px 20px;
    padding: 10px 0;
    border-top: 1px solid #e2e8f0;
}

/* Enhanced Date Selection Styles */
.date-selection {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.calendar-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.calendar-header {
    text-align: center;
    margin-bottom: 25px;
}

.calendar-header h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.calendar-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
}

.enhanced-calendar {
    margin: 20px 0;
}

/* Google Calendar Embed Styles */
.google-calendar-embed {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.google-calendar-embed iframe {
    width: 100%;
    min-height: 450px;
    border: none;
}


/* Manual Date Selection Styles */
.manual-date-selection {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.manual-date-selection h5 {
    font-family: 'EB Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2ea3f2;
    text-align: center;
}

.date-instruction {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-style: italic;
}

.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.date-input-group {
    display: flex;
    flex-direction: column;
}

.date-input-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.date-input-group input[type="date"] {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.date-input-group input[type="date"]:focus {
    outline: none;
    border-color: #2ea3f2;
    box-shadow: 0 0 0 3px rgba(46, 163, 242, 0.2);
}

.date-input-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(46, 163, 242, 0.1);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #64748b;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid transparent;
}

.legend-color.available {
    background: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.legend-color.selected {
    background: #2ea3f2;
    box-shadow: 0 0 0 2px rgba(46, 163, 242, 0.2);
}

.legend-color.unavailable {
    background: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.date-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.selected-dates-summary {
    background: rgba(46, 163, 242, 0.05);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(46, 163, 242, 0.1);
}

.selected-dates-summary h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 15px;
    text-align: center;
}

.dates-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.selected-date-tag {
    background: linear-gradient(135deg, #2ea3f2, #1e88e5);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 4px 15px rgba(46, 163, 242, 0.2);
    transition: all 0.3s ease;
}

.selected-date-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(46, 163, 242, 0.3);
}

.trip-duration {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(46, 163, 242, 0.1);
}

.duration-label {
    font-weight: 600;
    color: #1a2332;
}

.duration-value {
    font-weight: 700;
    color: #2ea3f2;
    font-size: 1.1rem;
}

.pricing-preview {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(26, 35, 50, 0.2);
}

.price-estimate,
.deposit-estimate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.deposit-estimate {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    padding-top: 15px;
}

.price-label,
.deposit-label {
    font-weight: 500;
    opacity: 0.9;
}

.price-value,
.deposit-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2ea3f2;
}

.summary-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0 20px;
    flex-wrap: wrap;
}

.summary-actions .btn {
    min-width: 200px;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-outline {
    background: transparent;
    color: #2ea3f2;
    border: 2px solid #2ea3f2;
    box-shadow: 0 4px 15px rgba(46, 163, 242, 0.1);
}

.btn-outline:hover {
    background: #2ea3f2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 163, 242, 0.2);
}

.payment-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.summary-actions .btn svg {
    transition: transform 0.3s ease;
}

.summary-actions .btn:hover svg {
    transform: scale(1.1);
}

/* Menu Selection Styles */
.menu-selection {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.menu-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.menu-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.menu-item {
    background: #f8fafc;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #2ea3f2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-item span {
    font-weight: 500;
    color: #2c3e50;
    flex: 1;
}

.menu-photo {
    width: 60px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.menu-item.with-photo {
    padding: 12px 15px;
    min-height: 60px;
}

/* Guest Selection Styles */
.guest-selection {
    background: rgba(46, 163, 242, 0.05);
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(46, 163, 242, 0.1);
}

.guest-selection h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 20px;
    text-align: center;
}

.guest-input-container {
    text-align: center;
}

.guest-input-container label {
    display: block;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 15px;
}

.guest-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.guest-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #2ea3f2;
    background: white;
    color: #2ea3f2;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guest-btn:hover {
    background: #2ea3f2;
    color: white;
    transform: scale(1.1);
}

.guest-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

#guest-count {
    width: 80px;
    height: 50px;
    text-align: center;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    background: white;
}

#guest-count:focus {
    outline: none;
    border-color: #2ea3f2;
    box-shadow: 0 0 0 3px rgba(46, 163, 242, 0.1);
}

.guest-note {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Dinner Section Enhancements */
.night-dinner-section {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(46, 163, 242, 0.1);
}

.night-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(46, 163, 242, 0.2);
}

.dinner-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 15px;
}

.dinner-option:hover {
    background: #e2e8f0;
    border-color: #2ea3f2;
    box-shadow: 0 4px 12px rgba(46, 163, 242, 0.1);
}

.dinner-option input[type="radio"] {
    margin-top: 5px;
    accent-color: #2ea3f2;
    transform: scale(1.2);
}

.dinner-photo {
    width: 80px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dinner-option:hover .dinner-photo {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.dinner-option label {
    flex: 1;
    cursor: pointer;
    line-height: 1.6;
}

.dinner-option strong {
    color: #2c3e50;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.dinner-description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .guest-counter {
        gap: 12px;
    }
    
    .guest-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    #guest-count {
        width: 70px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .dinner-option {
        flex-direction: column;
        text-align: left;
        gap: 12px;
    }
    
    .dinner-photo {
        width: 100%;
        height: 120px;
        align-self: center;
    }
    
    .menu-photo {
        width: 50px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .guest-selection {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .guest-counter {
        gap: 10px;
    }
    
    .guest-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    #guest-count {
        width: 60px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .night-dinner-section {
        padding: 15px;
    }
    
    .dinner-option {
        padding: 15px;
    }
    
    .menu-photo {
        width: 45px;
        height: 35px;
    }
}

/* Insurance Toggle Styles */
.insurance-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(46, 163, 242, 0.1);
    transition: all 0.3s ease;
}

.insurance-section:hover {
    border-color: rgba(46, 163, 242, 0.2);
    box-shadow: 0 8px 25px rgba(46, 163, 242, 0.05);
}

.insurance-toggle {
    margin-bottom: 15px;
}

.insurance-label {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    cursor: pointer;
    user-select: none;
}

.insurance-checkbox {
    display: none;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: #cbd5e0;
    border-radius: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.insurance-checkbox:checked + .insurance-label .toggle-switch {
    background: #2ea3f2;
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.insurance-checkbox:checked + .insurance-label .toggle-slider {
    transform: translateX(28px);
}

.insurance-info {
    flex: 1;
}

.insurance-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 5px;
}

.insurance-price {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.insurance-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.insurance-policy {
    background: none;
    border: none;
    color: #2ea3f2;
    font-size: 0.9rem;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.insurance-policy:hover {
    color: #1976d2;
}

/* Checkout Modal Styles */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.checkout-modal:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.booking-confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-confirmation-modal:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    max-width: 600px;
    max-height: 90vh;
    margin: 5vh auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.checkout-modal:not(.hidden) .modal-content,
.booking-confirmation-modal:not(.hidden) .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, #2ea3f2, #1e88e5);
    color: white;
}

.modal-header h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 30px;
    max-height: calc(90vh - 200px);
    overflow-y: auto;
}

.checkout-summary {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #2ea3f2;
}

.checkout-summary h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 15px;
}

.deposit-info {
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #e8f5e8, #f0f9ff);
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.deposit-info h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 15px;
}

.payment-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 2px solid #10b981;
}

.payment-amount .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.payment-methods {
    margin-bottom: 25px;
}

.payment-methods h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 20px;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #2c3e50;
}

.payment-option:hover {
    border-color: #2ea3f2;
    background: rgba(46, 163, 242, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 163, 242, 0.1);
}

.payment-option.apple-pay {
    color: #000;
}

.booking-notice {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 15px;
    color: #92400e;
}

.notice-icon {
    flex-shrink: 0;
    color: #d97706;
}

.notice-text p {
    margin: 0;
    line-height: 1.6;
}

/* Booking Disabled State */
.booking.disabled {
    position: relative;
    filter: blur(2px);
    pointer-events: none;
}

.booking-disabled-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.disabled-message {
    text-align: center;
    max-width: 400px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(46, 163, 242, 0.2);
}

.disabled-message svg {
    color: #2ea3f2;
    margin-bottom: 20px;
}

.disabled-message h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 15px;
}

.disabled-message p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        margin: 2vh auto;
        max-height: 96vh;
        border-radius: 15px;
    }
    
    .modal-body {
        padding: 20px;
        max-height: calc(96vh - 150px);
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .insurance-label {
        gap: 15px;
    }
    
    .toggle-switch {
        width: 50px;
        height: 28px;
    }
    
    .toggle-slider {
        width: 24px;
        height: 24px;
    }
    
    .insurance-checkbox:checked + .insurance-label .toggle-slider {
        transform: translateX(22px);
    }
}

@media (max-width: 480px) {
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .checkout-summary,
    .deposit-info {
        padding: 15px;
    }
    
    .payment-amount {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .booking-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .disabled-message {
        padding: 30px 20px;
        margin: 0 20px;
    }
}

.dinner-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dinner-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dinner-option:hover {
    background: #e2e8f0;
    border-color: #2ea3f2;
}

.dinner-option input[type="radio"] {
    margin-top: 5px;
    accent-color: #2ea3f2;
}

.dinner-option label {
    flex: 1;
    cursor: pointer;
    line-height: 1.6;
}

.dinner-option strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

/* Trip Summary Styles */
.trip-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.summary-details {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item strong {
    color: #2c3e50;
    font-weight: 600;
}

.pricing-summary {
    background: linear-gradient(135deg, #2ea3f2, #1e88e5);
    color: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(46, 163, 242, 0.3);
}

.pricing-summary h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.total {
    font-size: 1.2rem;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.price-item.deposit {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
}

/* Step Navigation Buttons */
.step-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.step-buttons .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2ea3f2, #1e88e5);
    color: white;
    box-shadow: 0 5px 15px rgba(46, 163, 242, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 163, 242, 0.4);
}

.btn-secondary {
    background: #64748b;
    color: white;
    box-shadow: 0 5px 15px rgba(100, 116, 139, 0.3);
}

.btn-secondary:hover {
    background: #475569;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.4);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .build-trip {
        padding: 80px 0 60px;
    }
    
    .build-trip h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .trip-builder {
        max-width: 95%;
        margin: 0 auto;
    }
    
    .trip-progress {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    
    .trip-progress-step {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    .trip-step {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .trip-step h3 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .destination-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .destination-option {
        max-width: none;
    }
    
    .date-selection {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .calendar-container {
        padding: 20px;
    }
    
    .calendar-legend {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .selected-dates-summary,
    .pricing-preview {
        padding: 20px;
    }
    
    .trip-summary {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .summary-details {
        order: 1;
    }
    
    .pricing-summary {
        order: 2;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .dinner-options {
        gap: 15px;
    }
    
    .step-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-buttons .btn {
        width: 100%;
        padding: 16px;
    }
    
    .summary-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .summary-actions .btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .build-trip {
        padding: 60px 0 40px;
    }
    
    .build-trip h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .trip-builder {
        max-width: 98%;
        border-radius: 16px;
    }
    
    .trip-progress {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .trip-progress-step {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
    
    .trip-step {
        padding: 25px 15px;
    }
    
    .trip-step h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .destination-option {
        border-radius: 12px;
    }
    
    .destination-option h4 {
        font-size: 1.2rem;
        margin: 15px 15px 8px;
    }
    
    .destination-option p {
        margin: 0 15px 12px;
        font-size: 0.9rem;
    }
    
    .destination-option .price {
        margin: 0 15px 15px;
        font-size: 1.1rem;
    }
    
    .calendar-container {
        padding: 15px;
    }
    
    .calendar-header h4 {
        font-size: 1.3rem;
    }
    
    .date-inputs {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .manual-date-selection h5 {
        font-size: 1.2rem;
    }
    
    .google-calendar-embed iframe {
        height: 350px;
    }
    
    .calendar-legend {
        gap: 8px;
    }
    
    .legend-item {
        font-size: 0.8rem;
    }
    
    .selected-dates-summary,
    .pricing-preview {
        padding: 15px;
        border-radius: 12px;
    }
    
    .menu-section {
        padding: 20px;
        border-radius: 12px;
    }
    
    .menu-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .menu-item {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .dinner-option {
        padding: 15px;
        flex-direction: column;
        text-align: left;
    }
    
    .dinner-option input[type="radio"] {
        margin-top: 0;
        margin-bottom: 8px;
        align-self: flex-start;
    }
    
    .summary-details,
    .pricing-summary {
        padding: 20px;
        border-radius: 12px;
    }
    
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 12px 0;
    }
    
    .pricing-summary h4 {
        font-size: 1.2rem;
    }
    
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .step-buttons .btn {
        padding: 14px;
        font-size: 0.95rem;
    }
    
    .summary-actions .btn {
        padding: 14px 20px;
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .summary-actions .btn svg {
        width: 16px;
        height: 16px;
    }
}

.policy-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px; /* Increased padding */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex; /* Use flexbox for alignment */
    align-items: flex-start; /* Align items to the top */
    gap: 20px; /* Space between icon and text */
}

.policy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.policy-icon-new {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #2ea3f2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.policy-text-new h3 {
    font-family: 'Inter', 'Segoe UI', sans-serif; /* Changed font */
    font-size: 1.5rem; /* Increased font size */
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px; /* Reduced margin */
    letter-spacing: 0.01em; /* Adjusted letter spacing */
}

.policy-text-new p {
    font-size: 1.1rem; /* Increased font size */
    color: #5a6c7d; /* Softer color */
    line-height: 1.7; /* Improved line height */
    font-weight: 400;
}

.policy-item.insurance-policy {
    background: rgba(46, 163, 242, 0.1);
    border-color: rgba(46, 163, 242, 0.2);
}

.policy-item.insurance-policy .policy-icon-new {
    background-color: #1976d2;
}

.policy-item.insurance-policy h3 {
    color: #1976d2;
}