        :root {
            --primary: #015f80;
            --secondary: #00829c;
            --accent: #6abcc7;
            --gold: #caad2a;
            --light-gold: #e6c74f;
            --dark-gold: #a98e1f;
            --light: #f8f9fa;
            --dark: #333333;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --highlight: var(--gold);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #f9f9f9;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            background: var(--highlight);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }
        
        .btn:hover {
            background: linear-gradient(135deg, var(--dark-gold), var(--gold));
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(202, 173, 42, 0.5);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--highlight);
            color: var(--highlight);
        }
        
        .btn-outline:hover {
            background: var(--highlight);
            color: white;
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--highlight);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* 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);
}
        
        /* Hero Section */
        .excursions-hero {
            position: relative;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .excursions-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(1, 95, 128, 0.7), rgba(0, 130, 156, 0.8));
            z-index: 2;
        }
        
        .excursions-hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
            margin-top: 50px;
            max-width: 800px;
            width: 90%;
            padding: 0 20px;
        }
        
        .excursions-hero-content h1 {
            font-size: 3.5rem;
            margin-top: 1rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .excursions-hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }
        
        /* Excursions Navigation */
        .excursions-nav {
            background: white;
            position: sticky;
            top: 80px;
            z-index: 100;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .excursions-nav-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .excursion-nav-item {
            padding: 20px 25px;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }
        
        .excursion-nav-item:hover, .excursion-nav-item.active {
            color: var(--gold);
            border-bottom: 3px solid var(--gold);
        }
        
        /* Excursions Section */
        .excursions-section {
            padding: 80px 0;
        }
        
        .section-title-center {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title-center h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title-center h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--gold);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title-center p {
            font-size: 18px;
            color: var(--secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* New Grid Layout for Excursions */
        .excursions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .excursion-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(1, 95, 128, 0.1);
            transition: all 0.3s ease;
        }
        
        .excursion-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(1, 95, 128, 0.15);
        }
        
        .excursion-card-image {
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .excursion-card-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: white;
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .excursion-card-content {
            padding: 25px;
        }
        
        .excursion-card-title {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 12px;
        }
        
        .excursion-card-description {
            color: #5a5a5a;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
            height: 75px;
            overflow: hidden;
        }
        
        .excursion-card-features {
            margin-bottom: 20px;
        }
        
        .excursion-card-feature {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-size: 14px;
            color: #5a5a5a;
        }
        
        .excursion-card-feature i {
            color: var(--gold);
            margin-right: 8px;
            font-size: 14px;
            width: 20px;
        }
        
        .excursion-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }
        
        .excursion-card-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--gold);
        }
        
        .excursion-card-price-note {
            display: block;
            font-size: 12px;
            color: #777;
            font-weight: normal;
        }
        
        .btn-book {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }
        
        .btn-book:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(202, 173, 42, 0.4);
        }
        
        .btn-book i {
            margin-left: 8px;
            font-size: 14px;
        }
        
        /* 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 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--light-gold);
        }

        .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: var(--transition);
            font-size: 0.9rem;
        }

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

        .footer-col h4 {
            font-family: 'Playfair Display', serif;
            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: var(--transition);
            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;
        }

.footer-logo {
    text-align: left; /* center the logo */
    margin-right: 20px;
}

.footer-logo-img {
    max-width: 100px; /* adjust as needed */
    height: auto;
}
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .excursions-hero-content h1 {
                font-size: 2.8rem;
            }
            
            .excursions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
    /* 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;
    }
            
            .excursions-hero {
                height: 50vh;
                min-height: 400px;
            }
            
            .excursions-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .excursions-hero-content p {
                font-size: 1rem;
            }
            
            .excursion-nav-item {
                padding: 15px;
                font-size: 14px;
            }
            
            .excursions-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto 60px;
            }
    
    /* 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;
    }
        }
        
        @media (max-width: 576px) {
            .excursions-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .excursion-card-image {
                height: 200px;
            }
        }