/* Caribbean Tropical Color Palette */
:root {
    --caribbean-turquoise: #40E0D0;
    --deep-turquoise: #00CED1;
    --coral-pink: #FF7F7F;
    --sunset-orange: #FF8C42;
    --palm-green: #228B22;
    --tropical-lime: #32CD32;
    --sand-beige: #F5DEB3;
    --ocean-blue: #006994;
    --white: #FFFFFF;
    --dark-navy: #1B2951;
    --light-gray: #F8F9FA;
    --text-gray: #6c757d;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--caribbean-turquoise), var(--deep-turquoise));
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px var(--shadow);
}

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

.nav-logo h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.nav-logo span {
    color: var(--sand-beige);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Logo Image */
.nav-logo .logo-image {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sunset-orange);
    transition: width 0.3s ease;
}

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

/* Navigation Actions (Book Now button and hamburger) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-booking-btn {
    background: var(--sunset-orange);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.nav-booking-btn:hover {
    background: var(--coral-pink);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--caribbean-turquoise) 0%, var(--deep-turquoise) 50%, var(--ocean-blue) 100%);
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="palm" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23palm)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-promo-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sunset-orange), var(--coral-pink));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.6);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--ocean-blue);
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--ocean-blue);
    margin-bottom: 3rem;
    opacity: 0.8;
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--caribbean-turquoise);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--caribbean-turquoise), var(--deep-turquoise));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--ocean-blue);
    line-height: 1.6;
}

/* Packages Section */
.packages {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--palm-green) 0%, var(--tropical-lime) 100%);
    color: var(--white);
}

.packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.packages .section-subtitle {
    color: var(--sand-beige);
}

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

.package-card {
    background: var(--white);
    color: var(--dark-navy);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--sunset-orange);
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--sunset-orange);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.package-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--caribbean-turquoise);
    margin-bottom: 1.5rem;
}

.package-price span {
    font-size: 1rem;
    color: var(--ocean-blue);
    font-weight: 400;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.package-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.package-features i {
    color: var(--palm-green);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

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

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--caribbean-turquoise);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--sunset-orange);
    width: 30px;
}

.contact-item h4 {
    color: var(--caribbean-turquoise);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--caribbean-turquoise);
}

.form-group select option {
    background: var(--dark-navy);
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    color: var(--caribbean-turquoise);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: var(--sunset-orange);
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--caribbean-turquoise);
}

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-logo .logo-image {
        height: 40px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--caribbean-turquoise);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Keep Book Now button visible on mobile */
    .nav-booking-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 40px;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .drinks-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .merch-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        bottom: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .package-price {
        font-size: 2.5rem;
    }
    
    .services h2,
    .packages h2,
    .contact-info h2 {
        font-size: 2rem;
    }
}

/* Drinks Menu Section */
.drinks-menu {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.drinks-menu h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.drink-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 25px;
    border: 2px solid var(--caribbean-turquoise);
    background: transparent;
    color: var(--ocean-blue);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: var(--caribbean-turquoise);
    color: var(--white);
    transform: translateY(-2px);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    font-weight: 600;
    color: var(--dark-navy);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--caribbean-turquoise);
    transition: 0.4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--sunset-orange);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

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

.drink-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border-top: 3px solid var(--caribbean-turquoise);
}

.drink-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.drink-card.hidden {
    display: none;
}

.drink-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--coral-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.drink-image i {
    font-size: 2rem;
    color: var(--white);
}

.drink-card h3 {
    font-size: 1.5rem;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
    text-align: center;
}

.drink-description {
    color: var(--ocean-blue);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
}

.drink-price {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--caribbean-turquoise);
    margin: 1rem 0;
}

.drink-price .tour-price {
    display: inline;
}

.drink-price .alacarte-price {
    display: none;
}

.drink-price.alacarte .tour-price {
    display: none;
}

.drink-price.alacarte .alacarte-price {
    display: inline;
}

.drink-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.drink-tags .tag {
    background: var(--sand-beige);
    color: var(--dark-navy);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Route Map Section - St. Thomas Bar Crawl */
.route-map {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #0f1729 100%);
    color: var(--white);
}

.route-map h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--caribbean-turquoise);
}

.route-map .section-subtitle {
    color: var(--sand-beige);
    text-align: center;
    margin-bottom: 2rem;
}

/* Route Info Section */
.route-info {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: rgba(64, 224, 208, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(64, 224, 208, 0.3);
}

.route-description h3 {
    color: var(--caribbean-turquoise);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.route-description p {
    line-height: 1.8;
    color: var(--sand-beige);
    font-size: 1.05rem;
}

/* Google Maps Container */
.google-map-container {
    margin: 3rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--caribbean-turquoise);
}

.google-map {
    width: 100%;
    height: 600px;
    min-height: 500px;
}

/* Map Legend */
.map-legend {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-legend h4 {
    color: var(--caribbean-turquoise);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legend-items {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--white);
}

.legend-marker {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 14px;
}

.legend-marker.pickup {
    background: var(--sunset-orange);
}

.legend-marker.pickup::before {
    content: 'P';
}

.legend-marker.stop {
    background: var(--caribbean-turquoise);
}

.legend-marker.stop::before {
    content: '1';
}

/* Location Modal */
.location-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    margin: 2rem auto;
    padding: 0;
    border-radius: 20px;
    max-width: 700px;
    max-height: calc(100vh - 4rem);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

.modal-close {
    position: sticky;
    float: right;
    right: 20px;
    top: 20px;
    color: var(--dark-navy);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
    background: var(--coral-pink);
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, var(--caribbean-turquoise), var(--deep-turquoise));
    padding: 2.5rem 2rem 2rem;
    color: white;
    position: relative;
}

.modal-header h2 {
    margin: 0 0 0.75rem 0;
    font-size: 2rem;
    color: white;
}

.modal-type-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.modal-type-badge.pickup {
    background: var(--sunset-orange);
    border-color: white;
}

.modal-type-badge.stop {
    background: var(--palm-green);
    border-color: white;
}

.modal-body {
    padding: 2rem;
    color: var(--dark-navy);
    overflow-y: auto;
}

.modal-description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
}

.modal-highlights {
    background: linear-gradient(135deg, var(--sunset-orange), var(--coral-pink));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.modal-highlights i {
    font-size: 1.5rem;
}

.modal-body h4 {
    color: var(--caribbean-turquoise);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-list {
    list-style: none;
    padding: 0;
}

.modal-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #555;
}

.modal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--palm-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.modal-tag {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.modal-tag.activity {
    background: linear-gradient(135deg, var(--caribbean-turquoise), var(--deep-turquoise));
    color: white;
}

.modal-tag.amenity {
    background: var(--sand-beige);
    color: var(--dark-navy);
    border: 2px solid var(--sunset-orange);
}

.modal-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-contact {
    background: rgba(64, 224, 208, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--caribbean-turquoise);
}

.modal-contact i {
    color: var(--caribbean-turquoise);
    margin-right: 0.5rem;
}

.modal-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--caribbean-turquoise), var(--deep-turquoise));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.modal-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(64, 224, 208, 0.4);
}

.modal-link i {
    margin-right: 0.5rem;
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--caribbean-turquoise);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--deep-turquoise);
}

.route-selector {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.route-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.route-btn i {
    font-size: 2rem;
}

.route-btn:hover,
.route-btn.active {
    background: var(--caribbean-turquoise);
    border-color: var(--caribbean-turquoise);
    transform: translateY(-5px);
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
}

.interactive-map {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.topo-map {
    width: 100%;
    height: auto;
    display: block;
}

.route-path {
    opacity: 0;
    transition: opacity 0.5s ease;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 2s ease forwards;
}

.route-path.active {
    opacity: 1;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

.map-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: all;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
}

.map-marker.active {
    opacity: 1;
}

.marker-pin {
    width: 20px;
    height: 20px;
    background: var(--sunset-orange);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.map-marker:hover .marker-pin {
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.6);
}

.marker-label {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-navy);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.map-marker:hover .marker-label {
    opacity: 1;
}

.cruise-marker .marker-pin {
    background: #006994;
}

.explorer-marker .marker-pin {
    background: #228B22;
}

.rumcrawl-marker .marker-pin {
    background: #FF8C42;
}

.location-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.location-details h3 {
    color: var(--caribbean-turquoise);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.location-details p {
    line-height: 1.8;
    opacity: 0.9;
}

#locationFeatures {
    margin-top: 1.5rem;
}

#locationFeatures ul {
    list-style: none;
    padding: 0;
}

#locationFeatures li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#locationFeatures i {
    color: var(--sunset-orange);
}

/* Merchandise Section */
.merchandise {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--caribbean-turquoise) 0%, var(--deep-turquoise) 100%);
    color: var(--white);
    position: relative;
}

.merchandise h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.merchandise .section-subtitle {
    color: var(--sand-beige);
}

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

.merch-card {
    background: var(--white);
    color: var(--dark-navy);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.merch-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--palm-green), var(--tropical-lime));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.merch-image i {
    font-size: 3rem;
    color: var(--white);
}

.merch-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--sunset-orange);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.merch-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.merch-description {
    color: var(--ocean-blue);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
    flex-grow: 1;
}

.merch-options {
    margin: 1rem 0;
}

.option-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-navy);
}

.size-options,
.color-options,
.style-options {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.size-btn,
.style-btn {
    padding: 8px 15px;
    border: 2px solid var(--caribbean-turquoise);
    background: transparent;
    color: var(--ocean-blue);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.size-btn:hover,
.style-btn:hover,
.size-btn.selected,
.style-btn.selected {
    background: var(--caribbean-turquoise);
    color: var(--white);
}

.color-btn {
    width: 35px;
    height: 35px;
    border: 3px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-btn:hover,
.color-btn.selected {
    border-color: var(--dark-navy);
    transform: scale(1.1);
}

.merch-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--caribbean-turquoise);
    text-align: center;
    margin: 1rem 0;
}

.add-to-cart {
    width: 100%;
    margin-top: auto;
}

.cart-summary {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    color: var(--dark-navy);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.cart-summary.visible {
    opacity: 1;
    transform: translateY(0);
}

.cart-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.cart-header i {
    color: var(--caribbean-turquoise);
}

.cart-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sunset-orange);
    margin-bottom: 1rem;
}

#checkoutBtn {
    width: 100%;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.service-card,
.package-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hover Effects */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.package-card:nth-child(1) { animation-delay: 0.1s; }
.package-card:nth-child(2) { animation-delay: 0.2s; }
.package-card:nth-child(3) { animation-delay: 0.3s; }

/* Responsive Styles for Google Maps and Modal */
@media (max-width: 992px) {
    .google-map {
        height: 500px;
    }
    
    .modal-content {
        margin: 10% auto;
        max-width: 90%;
    }
    
    .route-info {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .route-map {
        padding: 60px 0;
    }
    
    .route-map h2 {
        font-size: 2rem;
    }
    
    .route-description h3 {
        font-size: 1.3rem;
    }
    
    .route-description p {
        font-size: 1rem;
    }
    
    .google-map {
        height: 400px;
    }
    
    .map-legend {
        padding: 1rem;
    }
    
    .legend-items {
        gap: 1rem;
    }
    
    .legend-marker {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .modal-content {
        margin: 1rem auto;
        max-width: 95%;
        max-height: calc(100vh - 2rem);
    }
    
    .modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-body h4 {
        font-size: 1.1rem;
    }
    
    .modal-close {
        right: 15px;
        top: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .modal-tags {
        gap: 0.5rem;
    }
    
    .modal-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .route-map h2 {
        font-size: 1.75rem;
    }
    
    .route-info {
        padding: 1rem;
    }
    
    .route-description h3 {
        font-size: 1.1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .route-description p {
        font-size: 0.95rem;
    }
    
    .google-map {
        height: 350px;
    }
    
    .map-legend h4 {
        font-size: 1.1rem;
    }
    
    .legend-items {
        flex-direction: column;
        align-items: center;
    }
    
    .legend-item {
        font-size: 0.9rem;
    }
    
    .modal-content {
        margin: 0.5rem auto;
        border-radius: 15px;
        max-height: calc(100vh - 1rem);
    }
    
    .modal-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-type-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-description-text {
        font-size: 1rem;
    }
    
    .modal-highlights {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .modal-body h4 {
        font-size: 1rem;
        margin: 1.5rem 0 0.75rem;
    }
    
    .modal-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .modal-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Quick Booking Section */
.quick-booking {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.05) 0%, rgba(0, 206, 209, 0.05) 100%);
}

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

.booking-info h2 {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.booking-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.booking-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.booking-feature {
    display: flex;
    gap: 20px;
    align-items: start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--caribbean-turquoise), var(--deep-turquoise));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.feature-text h4 {
    font-size: 1.1rem;
    color: var(--dark-navy);
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.booking-benefits {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.booking-benefits h3 {
    font-size: 1.5rem;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.booking-benefits ul {
    list-style: none;
}

.booking-benefits li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.booking-benefits li i {
    color: var(--caribbean-turquoise);
    font-size: 1.2rem;
}

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

.cta-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cta-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cta-header i {
    font-size: 2.5rem;
    color: var(--caribbean-turquoise);
}

.cta-header h3 {
    font-size: 2rem;
    color: var(--dark-navy);
}

.cta-card > p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--caribbean-turquoise);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 5px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.payment-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.payment-badges i {
    font-size: 2rem;
    color: var(--text-gray);
    opacity: 0.7;
}

.secure-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.secure-note i {
    color: var(--palm-green);
}

.booking-tours-preview {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.booking-tours-preview h4 {
    font-size: 1.3rem;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.tour-preview-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tour-preview-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tour-preview-item:hover {
    background: rgba(64, 224, 208, 0.1);
    transform: translateX(5px);
}

.tour-preview-item i {
    font-size: 1.8rem;
    color: var(--caribbean-turquoise);
}

.tour-preview-item div {
    flex: 1;
}

.tour-preview-item strong {
    display: block;
    color: var(--dark-navy);
    font-size: 1rem;
    margin-bottom: 3px;
}

.tour-preview-item span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Navigation Booking Button Highlight */
.nav-booking {
    background: var(--sunset-orange);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.nav-booking:hover {
    background: var(--coral-pink);
    color: var(--white) !important;
}

.nav-booking::after {
    display: none;
}

/* Responsive Booking Section */
@media (max-width: 992px) {
    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

@media (max-width: 768px) {
    .quick-booking {
        padding: 60px 0;
    }

    .booking-info h2 {
        font-size: 2rem;
    }

    .booking-features {
        gap: 20px;
    }

    .cta-card {
        padding: 30px 20px;
    }

    .cta-header h3 {
        font-size: 1.5rem;
    }

    .quick-stats {
        gap: 10px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .payment-badges i {
        font-size: 1.5rem;
    }
}
