.elementor-232 .elementor-element.elementor-element-35672c2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-83d7671 *//* ========== HEADER STYLES ========== */

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #262C39 0%, #2C4A52 100%);
    color: #FFFFFF;
    padding: 12px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-link:hover {
    color: #E7B022;
}

.top-link .icon {
    font-size: 14px;
}

.top-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #E7B022;
    transform: translateY(-3px);
}

/* Main Header */
.main-header {
    position: relative;
    z-index: 1000;
}

.header-main {
    background: #FFFFFF;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.header-main.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 24px;
    font-weight: 900;
    color: #262C39;
    line-height: 1;
    margin-bottom: 5px;
}

.logo-subtitle {
    font-size: 11px;
    color: #E7B022;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 15px 25px;
    color: #262C39;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #E7B022 0%, #F4B942 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #E7B022;
}

.nav-link:hover::after {
    width: 60%;
}

.dropdown-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 450px;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.nav-item:hover .dropdown-menu {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.dropdown-content {
    padding: 15px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(231, 176, 34, 0.1) 0%, rgba(244, 185, 66, 0.1) 100%);
    transform: translateX(8px);
}

.dropdown-icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E7B022 0%, #F4B942 100%);
    border-radius: 12px;
    font-size: 28px;
    flex-shrink: 0;
}

.dropdown-text h4 {
    font-size: 16px;
    color: #262C39;
    margin-bottom: 5px;
    font-weight: 700;
}

.dropdown-text p {
    font-size: 13px;
    color: #4A4A4A;
    margin: 0;
}

/* Header CTA */
.header-cta {
    margin-left: 20px;
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #E7B022 0%, #F4B942 100%);
    color: #262C39;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(231, 176, 34, 0.3);
    transition: all 0.4s ease;
}

.btn-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 176, 34, 0.5);
}

.btn-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-quote:hover .btn-icon {
    transform: translateX(5px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-line {
    width: 28px;
    height: 3px;
    background: #262C39;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #FFFFFF;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    transition: right 0.4s ease;
    z-index: 9999;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 80px 30px 30px;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-nav > li {
    border-bottom: 1px solid #F5F5F5;
}

.mobile-nav > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    color: #262C39;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submenu {
    list-style: none;
    padding: 0 0 0 20px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.has-submenu.active .submenu {
    max-height: 300px;
    padding-bottom: 15px;
}

.submenu li a {
    display: block;
    padding: 12px 0;
    color: #4A4A4A;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.submenu-toggle {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.has-submenu.active .submenu-toggle {
    transform: rotate(45deg);
}

.mobile-cta {
    margin-top: 30px;
}

.mobile-cta .btn-quote {
    width: 100%;
    justify-content: center;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .top-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .logo-title {
        font-size: 20px;
    }
    
    .logo-subtitle {
        font-size: 9px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .header-content {
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
    }
    
    .logo-title {
        font-size: 18px;
    }
    
    .logo img {
        height: 40px;
    }
}

/* Active Link Styling */
.nav-item .nav-link.active {
    color: #E7B022;
}

.nav-item .nav-link.active::after {
    width: 60%;
}/* End custom CSS */