.elementor-49 .elementor-element.elementor-element-4dbd221{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-49 .elementor-element.elementor-element-4dbd221:not(.elementor-motion-effects-element-type-background), .elementor-49 .elementor-element.elementor-element-4dbd221 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FE6603;}.elementor-49 .elementor-element.elementor-element-e130ad4{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-e2ff0bd *//* Full Width Orange Wrapper */
.ah-top-bar-wrapper {
    background-color: #FE6603; 
    width: 100%;
    /* Stripped all padding to make it as slim as the content allows */
    padding: 0; 
    font-family: sans-serif;
    display: flex;
    align-items: center;
}

/* Container: FAR APART Alignment */
.ah-top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 0 20px;
    /* This height dictates the bar thickness; 30px fits the icons perfectly */
    height: 32px; 
}

/* Email Styling - Keeping the 14px size */
.ah-item {
    color: #ffffff !important; 
    text-decoration: none;
    font-size: 14px; 
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1; /* Prevents text from pushing the height out */
}

/* Mail Icon - Keeping the 18px size */
.ah-envelope-icon {
    color: #ffffff !important;
    font-size: 18px; 
    line-height: 1;
    display: inline-block;
}

/* Social Icons Group */
.ah-social-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Social SVG Icons - Keeping the 17px size */
.ah-social-svg {
    width: 17px; 
    height: 17px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block; /* Removes baseline spacing */
}

/* Hover Effect */
.ah-social-link:hover .ah-social-svg {
    stroke: #1A252F; 
    /* Removed the translateY to prevent the icon from hitting the edge of the slim bar */
    opacity: 0.8; 
}

/* --- MOBILE VERSION --- */
@media (max-width: 768px) {
    .ah-top-bar-container {
        padding: 0 15px;
        height: 28px; /* Slightly tighter for mobile */
    }
    .ah-item {
        font-size: 11px;
    }
    .ah-social-svg {
        width: 15px;
        height: 15px;
    }
}/* End custom CSS */


/* Start custom CSS for html, class: .elementor-element-ee7d96c *//* --- Global Reset for Header --- */
.ah-header-wrapper {
    background: #ffffff;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 99999;
    font-family: sans-serif;
}

.header-container-boxed {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    /* This padding controls the height of the white bar */
    padding: 12px 20px; 
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    position: relative;
}

.header-logo img {
    /* SIGNIFICANTLY BIGGER: Increased to 100px */
    height: 100px; 
    width: auto;
    display: block;
    object-fit: contain;
    
    /* OVERFLOW TRICK: 
       The negative margins pull the logo "out" of the container.
       This lets the logo be 100px tall while the header bar stays 
       at its original height (~50-60px). */
    margin-top: -25px;
    margin-bottom: -25px;
    
    /* Smooth rendering */
    image-rendering: -webkit-optimize-contrast;
    position: relative;
    z-index: 100;
}

/* --- Desktop Nav: Right Aligned & Compact --- */
.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 25px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #FF6501;
}

/* Desktop Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    min-width: 240px;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 3px solid #FF6501;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    font-size: 13px;
    text-transform: none;
}

/* Desktop CTA */
.desktop-book-btn {
    background: #FF6501;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

/* Hide Hamburger & Mobile Items on Desktop */
.hamburger-icon, .mobile-drawer-header, .mobile-only-item {
    display: none;
}

/* --- MOBILE VERSION (1024px and below) --- */
@media (max-width: 1024px) {
    .desktop-book-btn { display: none; }
    
    .header-logo img {
        /* Large but manageable for mobile screens */
        height: 80px;
        margin-top: -15px;
        margin-bottom: -15px;
        margin-left: -20px;
        z-index: -1 ;
    }

.hamburger-icon {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 34px; /* Slightly wider for better padding */
        height: 28px; /* Slightly taller for better padding */
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 5px; /* Added padding to make the hover area look better */
        border-radius: 4px;
        transition: background 0.3s ease;
    }

    .hamburger-icon span {
        width: 100%;
        height: 3px;
        background: #333;
        border-radius: 2px;
        transition: background 0.3s ease; /* Ensures the color change is smooth */
    }

    /* Hover State */
    .hamburger-icon:hover {
        background: #FF6501; /* Changes button background to your brand orange */
    }

    .hamburger-icon:hover span {
        background: #ffffff; /* Changes the bars to white on hover */
    }

    /* Mobile Side Drawer */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        overflow-y: auto;
    }

    .nav-links.is-active {
        right: 0;
    }

    .mobile-drawer-header {
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 20px;
        background: #f8f8f8;
        border-bottom: 1px solid #eee;
        box-sizing: border-box;
    }

    .close-btn { color: #FF6501; font-weight: bold; cursor: pointer; }

    .nav-links li { width: 100%; }
    .nav-links li a {
        padding: 15px 20px;
        border-bottom: 1px solid #f5f5f5;
        display: block;
    }

    /* Accordion Dropdown Mobile */
    .dropdown-menu {
        position: static;
        display: none;
        background: #fafafa;
        box-shadow: none;
        padding: 0;
    }

    .dropdown-open .dropdown-menu {
        display: block;
    }

    .mobile-only-item {
        display: block;
        padding: 20px;
    }

    .mobile-book-btn {
        background: #FF6501;
        color: #fff !important;
        text-align: center;
        padding: 14px !important;
        border-radius: 6px;
        display: block;
    }
}/* End custom CSS */


