/**
 * Main Stylesheet
 */
 @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #223C93;
    --secondary-color: #B89B33;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

a {
    color: #223C93;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #182c6a;
}

img {
    max-width: 100%;
    height: auto;
}
button {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}


/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar */
.top-bar {
    background-color: #223C93;
    color: #fff;
    padding: 10px 0;
    transition: transform 0.3s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    font-size: 14px;
}

.top-bar-item svg {
    margin-right: 5px;
}

.top-bar-item a {
    color: #fff;
    text-decoration: none;
}

.top-bar-item a:hover {
    text-decoration: underline;
    color: #fff;
}

/* Site header */
.site-header {
    background-color: #fff;
    padding: 8px 0;
    position: relative;
    z-index: 100;
    box-shadow: none;
    border-bottom: 1px solid #eee;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: #333;
}

.site-description {
    margin: 0 0 0 10px;
    font-size: 0.875rem;
    color: #666;
}

/* Custom logo */
.custom-logo-link {
    display: block;
    max-width: 150px;
}

.custom-logo {
    height: 90px;
    max-width: 100%;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    position: relative;
}

.menu-container {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin-left: 24px;
    position: relative;
}

.main-navigation ul li:first-child {
    margin-left: 0;
}

.main-navigation a {
    color: #333;
   
    font-weight: 700;
    font-size: 16px;
    padding: 0.5rem 0;
    display: block;
    position: relative;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #B89B33;
}

/* Current menu item styling */
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a {
    color: #B89B33;
    font-weight: 700;
}

/* Remove underline for current menu item */
.main-navigation .current-menu-item > a::after,
.main-navigation .current-menu-ancestor > a::after {
    display: none;
}

/* Submenu styling */
.main-navigation ul ul {
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    display: block;
    left: -999em;
    min-width: 200px;
    position: absolute;
    top: 100%;
    z-index: 99999;
    flex-direction: column;
    padding: 10px 0;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
    left: 0;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.main-navigation ul ul li {
    margin: 0;
    width: 100%;
}

.main-navigation ul ul a {
    padding: 0.5rem 1.5rem;
    width: 100%;
}

.main-navigation ul ul a:hover {
    background-color: #f8f9fa;
}

/* Navigation extras */
.nav-extras {
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
}

.nav-extras a {
    color: #333;
    margin-left: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.nav-extras a:hover {
    color: #0073aa;
}
.main-navigation a.btn-contact {
    background-color: #B89B33;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    margin-left: 24px;
}

.main-navigation a.btn-contact:hover {
    background-color: #B89B33;
}
/* Search overlay */
.search-overlay {
    background-color: rgba(255, 255, 255, 0.98);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.search-overlay .container {
    width: 100%;
    max-width: 680px;
    position: relative;
}

.search-overlay .search-form {
    display: flex;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.search-overlay .search-field {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    padding: 10px 0;
    outline: none;
    color: #333;
}

.search-overlay .search-submit {
    background: none;
    border: none;
    color: #0073aa;
    cursor: pointer;
    padding: 10px;
    font-size: 1.5rem;
}

.search-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #223C93;
    position: relative;
    transition: background-color 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: #223C93;
    position: absolute;
    transition: transform 0.3s ease;
}

.menu-icon::before {
    top: -6px;
}

.menu-icon::after {
    bottom: -6px;
}

.menu-toggle.active .menu-icon {
    background-color: transparent;
}

.menu-toggle.active .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .menu-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Hero banner */
.hero-banner {
    background-color: #003366;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-block;
    background-color: #0073aa;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.hero-cta:hover {
    background-color: #005177;
    color: #fff;
}

/* Main content area */

.page-header {
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2rem;
    color: #333;
}

/* Service card */
.service-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.service-thumbnail {
    position: relative;
}

.service-featured {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f39c12;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
}

.service-booking-type {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
}

.service-booking-type.online {
    background-color: #27ae60;
    color: #fff;
}

.service-booking-type.contact {
    background-color: #3498db;
    color: #fff;
}

.service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-header {
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-duration {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.875rem;
}

.service-excerpt {
    margin-bottom: 1.5rem;
    color: #666;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.service-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: #666;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0073aa;
}

.service-more {
    display: inline-block;
    padding: 8px 16px;
    background-color: #0073aa;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.service-more:hover {
    background-color: #005177;
    color: #fff;
}

/* Service single */
.service-single {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.service-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.service-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.875rem;
    color: #666;
}

.meta-value {
    font-size: 1.125rem;
    font-weight: 500;
}

.booking-type {
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.875rem;
}

.booking-type.online {
    background-color: #27ae60;
    color: #fff;
}

.booking-type.contact {
    background-color: #3498db;
    color: #fff;
}

.service-price-large .meta-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0073aa;
}

.price-note {
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.25rem;
}

.booking-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #27ae60;
    color: #fff;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.booking-btn:hover {
    background-color: #219653;
    color: #fff;
}

.contact-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #3498db;
    color: #fff;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #2980b9;
    color: #fff;
}

.service-content-wrapper > div {
    margin-bottom: 2rem;
}

.service-content-wrapper h3 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.service-itinerary ul {
    margin-left: 1.5rem;
}

.service-includes-excludes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-contact-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.service-contact-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 5px;
    margin-top: 3rem;
}

.service-contact-form .wpcf7-form {
    margin-top: 1.5rem;
}

.service-contact-form input[type="text"],
.service-contact-form input[type="email"],
.service-contact-form input[type="tel"],
.service-contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.service-contact-form input[type="submit"] {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-contact-form input[type="submit"]:hover {
    background-color: #2980b9;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-image {
    border-radius: 5px;
    overflow: hidden;
}

/* Booking modal */
#bookingModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#bookingModal.show {
    display: flex;
}

.modal-content {
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #666;
}

.modal-title {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

/* Footer */
.site-footer {
    background-color: #223C93;
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer a:hover {
    color: #B89B33;
}

/* Footer Logo Area */
.footer-logo-area {
    margin-bottom: 2rem;
   
}

.footer-logo {
    display: inline-block;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

/* Footer Content - 3 columns */
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
}

/* Column 1: Company Info */
.footer-company-info {
    grid-column: 1 / 2;
}

/* Column 2: Contact Info */
.footer-contact {
    grid-column: 2 / 3;
}

/* Column 3: Links & Social */
.footer-links {
    grid-column: 3 / 4;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #fff;
    text-transform: uppercase;
}

.company-tax-id {
    font-size: 14px;
    margin-bottom: 0;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    margin-bottom: 0.75rem;
    font-size: 14px;
}

.contact-label {
    font-weight: 600;
    display: inline-block;
    margin-right: 5px;
}

.contact-text, .contact-link {
    display: inline-block;
}

/* Footer Links */
.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.footer-menu-list li {
    margin-bottom: 0.75rem;
    list-style: none;
}

.footer-menu-list a {
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
}

.footer-menu-list a:hover {
    color: #B89B33;
    padding-left: 5px;
}

.footer-services-heading,
.footer-support-heading {
    margin-top: 1.5rem;
    font-size: 16px;
}

/* Social Media */
.footer-social {
    margin-top: 1.5rem;
}

.social-heading {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 1rem 0;
    display: block;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #B89B33;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Copyright */
.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-company-info {
        grid-column: 1 / 3;
        margin-bottom: 1.5rem;
    }
    
    .footer-contact {
        grid-column: 1 / 2;
    }
    
    .footer-links {
        grid-column: 2 / 3;
    }
}

@media (max-width: 575px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-company-info, 
    .footer-contact, 
    .footer-links {
        grid-column: 1;
        margin-bottom: 1.5rem;
    }
    
    .footer-social {
        margin-top: 1rem;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .custom-logo {
        height: 70px;
    }
    

    
    /* Responsive logo */
    .custom-logo-link {
        max-width: 120px;
    }
    
    /* Mobile menu toggle styling */
    .menu-toggle {
        margin-left: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 4px;
    }
    
    .menu-toggle:focus {
        outline: none;
    }
    
    .menu-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #fff;
        padding: 60px 0 20px;
        flex-direction: column;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .menu-container.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .main-navigation ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .main-navigation li {
        margin: 0;
        width: 100%;
    }
    
    .main-navigation a {
        padding: 15px 20px;
        border-bottom: 1px solid #f5f5f5;
    }
    
    .contact-button {
        margin: 20px 20px;
        width: calc(100% - 40px);
        max-width: 200px;
    }
    
    .btn-contact {
        display: block;
        text-align: center;
        width: 100%;
    }
    
    /* Close button for mobile menu */
    .menu-toggle.active {
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 1001;
    }
    
    /* Submenu behavior on mobile */
    .main-navigation ul ul {
        position: static;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        display: none;
        width: 100%;
        background-color: #f9f9f9;
    }
    
    .main-navigation li.menu-item-has-children > a {
        position: relative;
    }
    
    .main-navigation li.menu-item-has-children > a::after {
        content: '+';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .main-navigation li.menu-item-has-children.active > a::after {
        content: '-';
    }
    
    .main-navigation li.menu-item-has-children.active > ul {
        display: block;
    }
    
    .main-navigation ul ul a {
        padding-left: 40px;
    }
}

/* Sticky header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Main Navigation Styles - matching the image */
.main-navigation ul li:first-child {
    margin-left: 0;
}

.main-navigation a {
   
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Remove underline for current menu item */
.main-navigation .current-menu-item > a::after,
.main-navigation .current-menu-ancestor > a::after {
    display: none;
}

/* Menu toggle icon */
.menu-icon {
    background-color: #223C93;
}

.menu-icon::before,
.menu-icon::after {
    background-color: #223C93;
}

/* Mobile menu styling */
@media (max-width: 768px) {
    /* Top bar items on smaller screens */
    .top-bar-item {
        margin-left: 15px;
        font-size: 12px;
    }
    
    .top-bar-item:first-child {
        margin-left: 0;
    }
    
    /* Responsive logo */
    .custom-logo-link {
        max-width: 120px;
    }
    
    /* Full width button on mobile */
    .btn-contact {
        display: block;
        text-align: center;
    }
}

