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

:root {
    --primary-color: #25424a;
    --primary-dark: #1a2f35;
    --secondary-color: #5F8B8F;
    --accent-color: #C07A5D;
    --text-dark: #000000;
    --text-light: #25424a;
    --text-lighter: #5F8B8F;
    --bg-light: #F4F1E8;
    --bg-white: #F4F1E8;
    --bg-section: #ffffff;
    --border-color: rgba(37, 66, 74, 0.2);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'HK Grotesk', 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 4rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(244, 241, 232, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo-image {
    height: 2rem;
    width: auto;
    max-width: 8rem;
    object-fit: contain;
    vertical-align: middle;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
}

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

.nav-link.active {
    color: var(--accent-color);
}

.nav-link.active::after {
    width: 100%;
    background: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #25424a 0%, #5F8B8F 50%, #C07A5D 100%);
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2.5rem 2rem;
    color: #fff;
    animation: fadeInUp 1s ease;
}

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

.hero-logo {
    max-width: 380px;
    width: 100%;
    height: auto;
    margin: 0 auto 0.25rem;
    display: block;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 24px rgba(255, 255, 255, 0.4));
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

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

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.hero-content .btn-secondary {
    color: #fff;
    border-color: #fff;
}

.hero-content .btn-secondary:hover {
    background: #fff;
    color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.875rem;
    z-index: 1;
}

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

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

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--bg-section);
}

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

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Destinations Section */
.destinations {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.destination-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.destination-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.destination-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--primary-color);
}

.destination-badge {
    background: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.destination-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.destination-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.destination-name {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-dark);
    flex: 1;
}

.destination-seats-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 600;
    white-space: nowrap;
}

.seats-icon {
    font-size: 1rem;
}

.seats-text {
    color: var(--accent-color);
}

.destination-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.6 * 0.875rem * 5);
}

.destination-summary-info {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.summary-item {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.summary-item:last-child {
    margin-bottom: 0;
}

.price-highlight {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.highlight-tag {
    display: inline-block;
    padding: 0.3125rem 0.625rem;
    background: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.6875rem;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

.highlight-tag:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.btn-destination {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding-top: 0.75rem;
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background: var(--bg-section);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem 1.25rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

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

.benefit-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.0625rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-section);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.testimonial-rating {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-style: italic;
    font-size: 0.875rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
}

.author-role {
    color: var(--text-lighter);
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--bg-section);
    overflow: visible;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.625rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.875rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(192, 122, 93, 0.1);
}

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

.form-group-captcha {
    margin-bottom: 1rem;
}

.form-group-captcha .g-recaptcha {
    margin-bottom: 0.25rem;
}

.captcha-error {
    display: none;
    font-size: 0.875rem;
    color: var(--accent-color);
    margin-top: 0.25rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

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

.footer-logo {
    font-family: 'HK Grotesk', 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.875rem;
}

.footer-section h4 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.social-icon:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Destination Landing Pages */
.destination-hero {
    padding: 8rem 0 4rem;
    color: white;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.destination-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.destination-hero .container {
    position: relative;
    z-index: 2;
}

.destination-hero-content {
    text-align: center;
}

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

.destination-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.destination-details {
    padding: 4rem 0;
    background: var(--bg-section);
    margin-bottom: 0;
    overflow: visible;
}

.schedule-table-section {
    padding: 0 0 4rem 0;
    background: var(--bg-section);
}

.schedule-table-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.schedule-table-section .destination-section {
    grid-column: 1 / -1;
}

.destination-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.destination-main-content {
    background: var(--bg-section);
}

.destination-section-combined {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 0;
}

.section-subsection {
    margin-bottom: 2rem;
}

.section-subsection:last-child {
    margin-bottom: 0;
}

.section-subsection h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subsection p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-section);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.back-button:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateX(-5px);
}

.back-arrow {
    font-size: 1.25rem;
}

.activities-grid-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.activity-item-compact {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4375rem 0.8125rem;
    background: var(--bg-section);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.75rem;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(192, 122, 93, 0.2);
}

.activity-item-compact:hover {
    background: var(--accent-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(192, 122, 93, 0.4);
    border-color: var(--accent-color);
}

.activity-icon-small {
    font-size: 0.875rem;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
}

.included-list li {
    padding: 0.25rem 0;
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
    padding-left: 1.25rem;
    position: relative;
}

.included-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.destination-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-self: start;
}

.booking-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.booking-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.booking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 0.5rem;
}

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

.booking-item strong {
    color: var(--text-dark);
    font-weight: 600;
    min-width: 120px;
}

.booking-item .date-select {
    flex: 1;
    min-width: 200px;
}

.booking-item span {
    color: var(--text-light);
}

.booking-price {
    color: var(--accent-color) !important;
    font-size: 1.5rem;
    font-weight: 700;
}

.seats-available {
    color: var(--accent-color);
    font-weight: 600;
}

.date-select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.date-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(192, 122, 93, 0.1);
}

.btn-booking {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
}

.booking-note {
    font-size: 0.875rem;
    color: var(--text-lighter);
    text-align: center;
    line-height: 1.6;
}

/* Schedule Table */
.schedule-section {
    background: linear-gradient(135deg, rgba(37, 66, 74, 0.05) 0%, rgba(95, 139, 143, 0.05) 100%);
    border: 2px solid var(--primary-color);
    padding: 2rem;
    border-radius: 15px;
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.schedule-header h2 {
    margin: 0;
    font-size: 1.75rem;
    color: var(--text-dark);
}

.schedule-toggle {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.schedule-toggle:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.toggle-icon {
    font-size: 0.875rem;
    transition: var(--transition);
}

.schedule-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.schedule-table-wrapper {
    margin: 0;
    padding: 1.5rem;
    background: var(--bg-section);
    border-radius: 10px;
    overflow-x: auto;
}

.schedule-table-hours {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.schedule-table-hours thead th {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 0.75rem;
    text-align: center;
    font-weight: 600;
    border: 1px solid var(--primary-dark);
}

.schedule-table-hours thead th:first-child {
    background: var(--primary-dark);
}

.schedule-table-hours tbody td {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    text-align: center;
    vertical-align: top;
}

.time-cell {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
    width: 80px;
}

.activity-cell {
    background: var(--bg-section);
    color: var(--text-light);
    min-height: 50px;
}

.activity-cell:hover {
    background: var(--bg-light);
}

.activity-location {
    display: block;
    font-size: 0.75rem;
    color: var(--text-lighter);
    margin-top: 0.25rem;
    font-style: italic;
}

.day-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.schedule-table-hours .day-date {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 0.25rem;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }
    
    .logo-image {
        height: 1.75rem;
        max-width: 7rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

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

    .hero-logo {
        max-width: 320px;
        margin-bottom: 0.25rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
    }

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

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

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destination-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .destination-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .destination-seats-badge {
        align-self: flex-start;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .destination-details-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-table-section .container {
        grid-template-columns: 1fr;
    }
    
    .booking-card {
        position: relative;
        top: 0;
        align-self: stretch;
    }

    .schedule-list-detailed li {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .schedule-time {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 640px) {
    .hero-logo {
        max-width: 260px;
        margin-bottom: 0.25rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about-stats {
        flex-direction: column;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-content {
        padding: 1.5rem;
    }
    
    .schedule-list li,
    .activities-list li {
        font-size: 0.875rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-content {
        padding: 1.5rem;
    }
    
    .schedule-list li,
    .activities-list li {
        font-size: 0.875rem;
    }
    
    .destination-highlights {
        gap: 0.375rem;
    }
    
    .highlight-tag {
        padding: 0.25rem 0.5rem;
        font-size: 0.625rem;
    }
    
    .included-item-compact {
        padding: 0.4375rem 0.75rem;
        font-size: 0.6875rem;
    }
    
    .included-icon {
        font-size: 0.8125rem;
    }
    
    .schedule-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .schedule-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .schedule-table-wrapper {
        overflow-x: auto;
        margin: 0;
        padding: 1rem;
    }
    
    .schedule-section {
        padding: 1.5rem;
    }
    
    .schedule-table-hours {
        font-size: 0.75rem;
    }
    
    .schedule-table-hours thead th {
        padding: 0.75rem 0.5rem;
    }
    
    .schedule-table-hours tbody td {
        padding: 0.5rem;
    }
    
    .included-list-main {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .schedule-table-hours {
        font-size: 0.75rem;
    }
}
