        :root {
            --primary: #015f80;
            --secondary: #00829c;
            --accent: #6abcc7;
            --gold: #caad2a;
            --light-gold: #e6c74f;
            --dark-gold: #a98e1f;
            --light: #f8f9fa;
            --light-gray: #e9ecef;
            --medium-gray: #dee2e6;
            --dark: #333333;
            --shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.12);
            --transition: all 0.2s ease;
            --border-radius: 8px;
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow);
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo img {
    height: 80px; /* adjust as needed */
    width: auto;
    transition: all 0.3s ease; /* for smooth color/size changes */
    padding-top: 10px;
}

header.scrolled .logo {
    color: var(--primary);
}

.logo span {
    color: var(--gold);
}
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--gold);
        }



header.scrolled nav ul li a {
    color: var(--primary);
}

header.scrolled nav ul li a:hover {
    color: var(--gold);
}
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

.mobile-menu-btn i {
    transition: color 0.3s ease;
}

header.menu-open .mobile-menu-btn i {
    color: var(--gold);
}

        /* Packages Hero */
        .packages-hero {
            position: relative;
            padding-top: 100px;
            padding-bottom: 40px;
            background: linear-gradient(rgba(1, 95, 128, 0.85), rgba(1, 95, 128, 0.85)),
                        url('../assets/PackagesHero.jpg') center/cover no-repeat;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
        }

        .packages-hero-content {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(0, 0, 0, 0.3);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .packages-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 0.75rem;
            font-weight: 700;
        }

        .packages-hero p {
            font-size: 1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Packages Navigation */
        .packages-nav {
            background-color: var(--light);
            border-bottom: 2px solid var(--medium-gray);
            padding: 0.75rem 0;
        }

        .packages-nav-container {
            display: flex;
            justify-content: center;
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .package-nav-item {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            padding: 0.6rem 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .package-nav-item:hover {
            background-color: var(--light-gray);
            border-color: var(--medium-gray);
        }

        .package-nav-item.active {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: var(--shadow);
        }

        /* Package Container Styles */
        .package-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-medium);
            overflow: hidden;
            border: 1px solid var(--medium-gray);
            display: none;
        }

        .package-container.active {
            display: block;
        }

        .package-hero {
            position: relative;
            height: 200px;
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            padding: 1.25rem;
            border-bottom: 2px solid var(--medium-gray);
        }

        .package-badge {
            background: var(--gold);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(202, 173, 42, 0.4);
            border: 1px solid var(--light-gold);
        }

        .package-content {
            padding: 2rem;
        }

        .package-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
            gap: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--medium-gray);
        }

        .package-title h2 {
            font-family: 'Playfair Display', serif;
            color: var(--primary);
            font-size: 1.75rem;
            margin-bottom: 0.75rem;
            font-weight: 700;
        }

        .package-title p {
            color: var(--dark);
            line-height: 1.5;
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .package-price {
            text-align: right;
            flex-shrink: 0;
            background: var(--light);
            padding: 1rem;
            border-radius: var(--border-radius);
            border: 1px solid var(--medium-gray);
        }

        .price-main {
            display: block;
            align-items: baseline;
            gap: 0.25rem;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
        }

        .price-note {
            font-size: 0.8rem;
            font-weight: 400;
            color: var(--dark);
            opacity: 0.7;
        }

        .package-features h3 {
            color: var(--primary);
            font-size: 1.25rem;
            margin-bottom: 1.25rem;
            font-weight: 600;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--gold);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.25rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 1.25rem;
            background: var(--light);
            border-radius: var(--border-radius);
            transition: var(--transition);
            border-left: 4px solid var(--accent);
            border: 1px solid var(--medium-gray);
            box-shadow: var(--shadow);
        }

        .feature-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        .feature-item:hover .feature-icon {
            background: var(--gold);
            color: white;
        }

        .feature-icon {
            background: var(--primary);
            color: white;
            width: 42px;
            height: 42px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.1rem;
        }

        .feature-text h4 {
            color: var(--primary);
            font-size: 1.05rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .feature-text p {
            color: var(--dark);
            font-size: 0.9rem;
            line-height: 1.5;
            opacity: 0.9;
        }

        .book-now-container {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #eee;
        }
        
        .book-now-btn {
            display: inline-block;
            background: var(--gold);
            color: white;
            padding: 16px 40px;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }
        
        .book-now-btn:hover {
            background: var(--dark-gold);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
        }
        
        .book-now-btn:active {
            transform: translateY(0);
        }

/* Footer Styles */
footer {
    background: linear-gradient(to bottom, var(--primary), #014a66);
    color: white;
    padding: 2.5rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    text-align: left;
    margin-right: 20px;
}

.footer-logo-img {
    max-width: 100px;
    height: auto;
}

.footer-description {
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

.footer-col h4 {
    color: var(--light-gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--light-gold);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--light-gold);
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--light-gold);
    margin-top: 0.15rem;
    min-width: 16px;
}

.contact-info span {
    opacity: 0.9;
    line-height: 1.4;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.8;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (max-width: 768px) {
    /* General Mobile Adjustments */
    body {
        font-size: 14px;
    }
    
    .container {
        width: 100%;
        padding: 0;
    }
    
    /* Header adjustments */
    .header-container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 60px;
        padding-top: 5px;
    }
    
    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(1, 95, 128, 0.98);
        z-index: 1000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    nav.active {
        display: flex;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    nav ul li a {
        font-size: 18px;
        padding: 12px 25px;
        display: block;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        font-size: 28px;
    }
    
    /* Packages Hero Mobile - No side margins */
    .packages-hero {
        padding-top: 70px;
        padding-bottom: 25px;
        width: 100%;
    }
    
    .packages-hero-content {
        padding: 0.8rem;
        margin-top: 30px;
        max-width: 95%;
    }
    
    .packages-hero h1 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .packages-hero p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Packages Navigation Mobile - No side margins */
    .packages-nav {
        padding: 0.5rem 0;
        width: 100%;
    }
    
    .packages-nav-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 15px 3px;
        -webkit-overflow-scrolling: touch;
        gap: 0.8rem;
    }
    
    .package-nav-item {
        white-space: nowrap;
        font-size: 0.85rem;
        padding: 0.4rem 0.7rem;
    }
    
    /* Package Container Mobile - WITH side margins */
    .package-container {
        margin: 0.8rem 15px;
        border-radius: 8px;
    }
    
    .package-hero {
        height: 130px;
        padding: 0.8rem;
    }
    
    .package-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .package-content {
        padding: 1.2rem;
    }
    
    .package-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.2rem;
    }
    
    .package-title h2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .package-title p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .package-price {
        padding: 0.8rem;
    }
    
    .price-main {
        font-size: 1.6rem;
    }
    
    .price-note {
        font-size: 0.75rem;
    }
    
    /* Features Grid Mobile */
    .package-features h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .feature-item {
        padding: 0.8rem;
        flex-direction: row;
        text-align: left;
        gap: 0.6rem;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .feature-text h4 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-text p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Booking Form Mobile - WITH side margins */
    .booking-wrapper {
        flex-direction: column;
        gap: 1.2rem;
        padding: 0;
        margin: 1.5rem 15px;
    }
    
    .booking-form-container {
        padding: 1.2rem;
        order: 1; /* Form comes first */
    }
    
    .price-summary-container {
        flex: 0 0 auto;
        position: static;
        order: 2; /* Price comes after form */
        width: 100%;
    }
    
    .booking-form-container h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .step-indicator {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .step-indicator::before {
        width: 80%;
    }
    
    .step-dot {
        width: 10px;
        height: 10px;
    }
    
    .booking-step {
        margin-bottom: 20px;
    }
    
    .booking-step h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .option-group {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .option-card {
        padding: 0.8rem;
    }
    
    .option-card h5 {
        font-size: 0.95rem;
    }
    
    .option-card p {
        font-size: 0.8rem;
    }
    
    .option-card img.option-image {
        height: 100px;
        margin-top: 0.5rem;
    }
    
    .excursions-list {
        gap: 0.6rem;
    }
    
    .excursion-option {
        padding: 0.8rem;
    }
    
    .excursion-name {
        font-size: 0.9rem;
    }
    
    .excursion-price {
        font-size: 0.85rem;
    }
    
    .counter-container {
        margin: 1.2rem 0;
        padding: 0.8rem;
        gap: 1rem;
    }
    
    .counter-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .counter-value {
        font-size: 1.3rem;
        min-width: 40px;
    }
    
    .note {
        font-size: 0.8rem;
        padding: 0.6rem;
        margin-top: 0.5rem;
    }
    
    .booking-navigation {
        gap: 0.8rem;
        padding-top: 0.8rem;
    }
    
    .nav-btn, .book-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        flex: 1;
        min-width: 100px;
    }
    
    /* Price Summary */
    .price-summary {
        padding: 1.2rem;
    }
    
    .price-summary h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .price-details {
        gap: 0.6rem;
    }
    
    .price-line {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    .price-line.total {
        font-size: 1.1rem;
        margin-top: 0.6rem;
        padding-top: 0.8rem;
    }
    
    /* Footer Mobile - No side margins */
    footer {
        padding: 2rem 0 0.8rem;
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .footer-logo-img {
        max-width: 90px;
    }
    
    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-links li {
        margin-bottom: 0.4rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 0.2rem 0;
    }
    
    .contact-info li {
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }
    
    .social-links {
        gap: 0.6rem;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .copyright {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
        font-size: 0.8rem;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    /* Extra small device adjustments */
    .packages-hero h1 {
        font-size: 1.4rem;
    }
    
    .package-title h2 {
        font-size: 1.2rem;
    }
    
    .booking-form-container h3 {
        font-size: 1.2rem;
    }
    
    .booking-step h4 {
        font-size: 0.95rem;
    }
    
    .price-summary h4 {
        font-size: 1rem;
    }
    
    .counter-value {
        font-size: 1.2rem;
    }
    
    .nav-btn, .book-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Adjust margins for very small screens */
    .package-container {
        margin: 0.8rem 10px;
    }
    
    .booking-wrapper {
        margin: 1.5rem 10px;
    }
    
    /* Footer */
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
        margin-right: 0;
    }

        .footer-col h4 {
            font-size: 1.7rem;
        }

    .footer-col h4::after {
            display: none;
        }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
        text-align: center;
    }
}