.elementor-2519 .elementor-element.elementor-element-f9b2853{--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 *//* ============================================
   CORAL STONE HEADER CSS
   Paste in: Elementor → Site Settings → Custom CSS
   OR: Appearance → Customize → Additional CSS
   ============================================ */

/* HEADER WRAPPER */
.cs-header-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0f2633;
    color: #ffffff;
    position: relative;
    width: 100%;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cs-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.cs-logo img {
    height: 90px;
    width: auto;
    display: block;
}

/* DESKTOP NAV */
.cs-nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 100%;
}

.cs-nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 34px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cs-nav-link:hover {
    color: #c9a962;
}

/* DROPDOWNS */
.cs-dropdown-parent {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cs-dropdown-parent::after {
    content: '';
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    margin-top: -2px;
    transition: border-color 0.3s ease;
}

.cs-dropdown-parent:hover::after {
    border-color: #c9a962;
}

.cs-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    padding: 12px 0;
    z-index: 101;
}

.cs-dropdown-parent:hover .cs-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.cs-dropdown-item {
    display: block;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
}

.cs-dropdown-item:hover {
    background: #f8f8f8;
    color: #0f2633;
}

.cs-dropdown-item strong {
    display: block;
    color: #0f2633;
    font-weight: 600;
    margin-bottom: 3px;
}

.cs-dropdown-item span {
    font-size: 12px;
    color: #888;
}

/* CTA BUTTON */
.cs-header-cta {
    background: #c9a962;
    color: #0f2633;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cs-header-cta:hover {
    background: #b8954d;
    transform: translateY(-1px);
}

/* MOBILE MENU TOGGLE */
.cs-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.cs-bar {
    width: 28px;
    height: 2px;
    background: #ffffff;
    transition: 0.3s;
}

/* MOBILE NAV - FIXED: position absolute instead of fixed */
.cs-nav-mobile {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: #0f2633;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 99;
}

.cs-nav-mobile.active {
    max-height: 100vh;
    overflow-y: auto;
    padding-bottom: 40px;
}

.cs-mobile-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 16px;
    cursor: pointer;
}

.cs-mobile-dropdown-toggle {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
}

.cs-mobile-submenu {
    background: rgba(0, 0, 0, 0.2);
    display: none;
}

.cs-mobile-submenu.active {
    display: block;
}

.cs-mobile-sublink {
    display: block;
    padding: 12px 32px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .cs-nav-desktop {
        display: none;
    }

    .cs-mobile-toggle {
        display: flex;
    }
}/* End custom CSS */