.elementor-15715 .elementor-element.elementor-element-374ef5c{--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 *//* YFE STUDIOS HEADER CSS */

/* Header Container */
#yfe-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

#yfe-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* Navigation Container */
.yfe-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.yfe-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.yfe-logo:hover {
    color: #8b5cf6;
}

/* Navigation Links */
.yfe-nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.yfe-nav-links li {
    margin: 0;
}

.yfe-nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

/* Hover Underline Effect */
.yfe-nav-links a:not(.yfe-cta-button)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #8b5cf6;
    transition: width 0.3s ease;
}

.yfe-nav-links a:not(.yfe-cta-button):hover::after {
    width: 100%;
}

.yfe-nav-links a:not(.yfe-cta-button):hover {
    color: #8b5cf6;
}

/* CTA Button */
.yfe-cta-button {
    background: #8b5cf6;
    color: white !important;
    padding: 0.8rem 1.8rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
    white-space: nowrap;
}

.yfe-cta-button::after {
    display: none !important;
}

.yfe-cta-button:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.3);
    color: white !important;
}

/* DROPDOWN MENUS */
.yfe-nav-dropdown {
    position: relative;
}

.yfe-dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 1.5rem;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    margin-top: 1rem;
}

.yfe-nav-dropdown:hover .yfe-dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    margin-top: 0.5rem;
}

.yfe-dropdown-content a {
    display: block;
    padding: 0.8rem 1rem;
    color: #1a1a1a;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.yfe-dropdown-content a::after {
    display: none !important;
}

.yfe-dropdown-content a:hover {
    background: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
    padding-left: 1.2rem;
}

/* Mobile Menu Button */
.yfe-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.yfe-mobile-menu span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.yfe-mobile-menu:hover span {
    background: #8b5cf6;
}

/* Body Padding for Fixed Header */
body {
    padding-top: 90px;
}

/* Tablet Adjustments */
@media (max-width: 1300px) and (min-width: 1101px) {
    .yfe-nav-links {
        gap: 1.8rem;
    }
    
    .yfe-nav-links a {
        font-size: 0.88rem;
    }
    
    .yfe-cta-button {
        padding: 0.7rem 1.4rem !important;
        font-size: 0.88rem !important;
    }
}

/* Mobile Navigation */
@media (max-width: 1100px) {
    body {
        padding-top: 70px;
    }

    .yfe-nav {
        padding: 1.2rem 1.5rem;
    }

    .yfe-nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .yfe-nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .yfe-nav-links li {
        width: 100%;
        text-align: center;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .yfe-nav-links li:last-child {
        border-bottom: none;
        padding-top: 1.5rem;
    }

    .yfe-nav-links > li > a {
        display: block;
        width: 100%;
        font-size: 1.1rem;
    }

    .yfe-cta-button {
        display: inline-block;
        width: auto;
        padding: 1rem 2rem !important;
    }

    .yfe-mobile-menu {
        display: flex;
    }

    /* Mobile Dropdown Adjustments */
    .yfe-dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0 0 0;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: transparent;
    }
    
    .yfe-nav-dropdown.active .yfe-dropdown-content {
        max-height: 500px;
    }

    .yfe-dropdown-content a {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
        background: rgba(139, 92, 246, 0.04);
        margin-bottom: 0.3rem;
    }

    /* Mobile Menu Animation - Hamburger to X */
    .yfe-mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .yfe-mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .yfe-mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}/* End custom CSS */