.elementor-629 .elementor-element.elementor-element-f899360{--display:flex;}/* Start custom CSS for html, class: .elementor-element-db6e66c *//* =========================================
   HEADER & NAVIGATION CORE STYLES
   ========================================= */

.mgt-main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: #ffffff; /* Pure Black for maximum contrast */
    border-bottom: 3px solid #CC6B14; /* Signature Orange line */
    z-index: 99999; /* Ensures it sits above EVERYTHING on the page */
    display: flex;
    align-items: center;
}

.mgt-header-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- LOGO --- */
.mgt-logo-wrapper a { display: block; }
.mgt-main-logo {
    max-height: 100px; /* Keeps your logo perfectly sized */
    width: auto;
    object-fit: contain;
}

/* --- HIDE MOBILE ELEMENTS ON DESKTOP --- */
.mgt-toggle-checkbox, 
.mgt-mobile-toggle-label {
    display: none;
}

/* --- DESKTOP NAVIGATION --- */
.mgt-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.mgt-nav-link {
    color: #CC6B14;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.mgt-nav-link:hover { color: #CC6B14; }

/* The "Plan Your Trip" Button */
.mgt-btn-nav {
    background-color: #CC6B14;
    padding: 12px 24px;
    border: 2px solid #CC6B14;
    color: #ffffff !important;
    border-radius: 0; /* Keeps the edgy, boxed glamour look */
}

.mgt-btn-nav:hover {
    background-color: transparent;
    color: #CC6B14 !important;
}

/* --- DESKTOP DROPDOWN (Our Gateways) --- */
.mgt-has-dropdown { position: relative; }

.mgt-dropdown-menu {
    position: absolute;
    top: 150%;
    left: 0;
    background-color: #CC6B14;
    min-width: 220px;
    list-style: none;
    padding: 15px 0;
    margin: 0;
    border: 2px solid #CC6B14;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0px rgba(204, 107, 20, 0.3);
}

.mgt-has-dropdown:hover .mgt-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: 100%; /* Snaps into place */
}

.mgt-dropdown-menu li { width: 100%; }
.mgt-dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: #e0e0e0;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.mgt-dropdown-menu a:hover {
    background-color: rgba(204, 107, 20, 0.1);
    color: #ffffff;
    padding-left: 35px; /* Cool hover slide effect */
}


/* =========================================
   MOBILE RESPONSIVE FIX (Under 1024px)
   ========================================= */
@media (max-width: 1024px) {
    
    /* 1. Show the Hamburger Icon */
    .mgt-mobile-toggle-label {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 35px;
        height: 25px;
        cursor: pointer;
        z-index: 100000; /* Stays above the menu */
    }

    .mgt-bar {
        width: 100%;
        height: 3px;
        background-color: #000000;
        transition: all 0.4s ease;
    }

    /* 2. Hide & Restructure the Nav Menu */
    .mgt-main-nav {
        position: fixed;
        top: 90px; /* Sits directly below the 90px header */
        left: -100%; /* Hides it off-screen to the left */
        width: 100%;
        height: calc(100vh - 90px);
        background-color: #000000;
        transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1); /* Smooth slide */
        overflow-y: auto;
        padding-top: 40px;
    }

    /* 3. Stack the Links Vertically */
    .mgt-nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 10%;
        gap: 20px;
    }

    .mgt-nav-link { font-size: 1.5rem; }

    /* 4. Fix Mobile Dropdown */
    .mgt-dropdown-menu {
        position: relative;
        top: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 2px solid #CC6B14;
        padding-left: 10px;
        margin-top: 15px;
        background: transparent;
    }

    .mgt-dropdown-menu a { font-size: 1.1rem; padding: 10px; }

    /* 5. THE MAGIC: When Hamburger is Clicked */
    .mgt-toggle-checkbox:checked ~ .mgt-main-nav {
        left: 0; /* Slides the menu in! */
    }

    /* 6. Animate Hamburger into an 'X' */
    .mgt-toggle-checkbox:checked ~ .mgt-mobile-toggle-label .mgt-bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
        background-color: #CC6B14;
    }
    .mgt-toggle-checkbox:checked ~ .mgt-mobile-toggle-label .mgt-bar:nth-child(2) {
        opacity: 0; /* Hides middle bar */
    }
    .mgt-toggle-checkbox:checked ~ .mgt-mobile-toggle-label .mgt-bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
        background-color: #CC6B14;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-f899360 *//* HEADER REPAIR - FIXING LOGO OVERLAP */

.mgt-main-header {
    height: 100px; /* Fixed height for consistency */
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-bottom: 4px solid #000000;
    padding: 0 5%;
}

.mgt-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* 1. LIMIT THE LOGO SIZE */
.mgt-logo-wrapper {
    flex: 0 0 250px; /* Tells the logo it only gets 250px of space */
}

.mgt-main-logo {
    max-height: 80px; /* Stops it from being too tall */
    width: auto;
    display: block;
}

/* 2. PROTECT THE NAVIGATION */
.mgt-desktop-nav {
    flex: 1; /* Navigation takes the remaining space */
    display: flex;
    justify-content: flex-end; /* Pushes menu to the right */
}

.mgt-nav-list {
    display: flex;
    align-items: center;
    gap: 25px; /* Space between words */
    list-style: none;
    margin: 0;
}

/* 3. FIX THE "PLAN YOUR TRIP" OVERLAP */
.mgt-btn-nav {
    background: #000000;
    color: #ffffff !important;
    padding: 12px 20px;
    font-weight: 900;
    white-space: nowrap; /* STOPS THE TEXT FROM WRAPPING INTO TWO LINES */
    text-decoration: none;
    border: 2px solid #000000;
}

/* 4. HIDE THE MOBILE HAMBURGER ON DESKTOP */
.mgt-mobile-toggle {
    display: none;
}

@media (max-width: 1024px) {
    .mgt-desktop-nav { display: none; }
    .mgt-mobile-toggle { display: block; }
}/* End custom CSS */