.elementor-10 .elementor-element.elementor-element-cf33793{--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-04314fc *//* =========================================================================
   Reset & Base Styles
   ========================================================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IranSans', Tahoma, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fefefe;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* =========================================================================
   Keyframes Animations
   ========================================================================= */
@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-15px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideInRight {
    0% { transform: translateX(100%); }
    100% { transform: translateX(0); }
}

@keyframes slideOutRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

/* =========================================================================
   Premium Header Wrapper
   ========================================================================= */
.premium-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 3px 30px rgba(0,0,0,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: fadeInDown 0.5s ease;
}

/* =========================================================================
   Header Container
   ========================================================================= */
.premium-header-container {
    max-width: 1340px;
    height: 85px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: rtl;
    gap: 20px;
}

/* =========================================================================
   Logo
   ========================================================================= */
.header-logo img {
    height: 38px;
    width: auto;
    max-width: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-logo img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* =========================================================================
   Desktop Navigation
   ========================================================================= */
.premium-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.premium-menu {
    display: flex;
    align-items: center;
    gap: 48px;
}

.premium-menu > .menu-item > a {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    padding: 10px 0;
    display: inline-block;
    position: relative;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.premium-menu > .menu-item > a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 0%;
    height: 2px;
    background: #111;
    border-radius: 20px;
    transition: width 0.3s ease;
}

.premium-menu > .menu-item:hover > a::after {
    width: 100%;
}

.premium-menu > .menu-item > a:hover {
    color: #ff4a57;
}

/* =========================================================================
   Dropdown Menu Desktop
   ========================================================================= */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    right: 0;
    top: 120%;
    min-width: 240px;
    background: #fff;
    padding: 18px 0;
    border-radius: 14px;
    box-shadow: 
        0 5px 15px rgba(0,0,0,0.04),
        0 12px 35px rgba(0,0,0,0.08),
        0 18px 45px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.28s cubic-bezier(0.25,0.1,0.25,1);
    z-index: 200;
}

.menu-item:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.dropdown-menu li a:hover {
    background: linear-gradient(90deg, #f7f7f7 0%, #eaeaea 100%);
    color: #000;
    padding-right: 30px;
}

/* =========================================================================
   Search Icon
   ========================================================================= */
.header-search {
    font-size: 18px;
    color: #111;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-search:hover {
    transform: scale(1.08);
    opacity: 0.75;
    color: #ff4a57;
}

/* =========================================================================
   Mobile Menu Toggle (Hamburger)
   ========================================================================= */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* =========================================================================
   Mobile Menu Overlay
   ========================================================================= */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================================================================
   Mobile Menu Container
   ========================================================================= */
.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    padding: 30px 0;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.25,0.1,0.25,1);
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
}

.mobile-menu-container.active {
    right: 0;
    animation: slideInRight 0.4s ease forwards;
}

/* =========================================================================
   Mobile Menu Header
   ========================================================================= */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px 25px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-menu-logo img {
    height: 32px;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    font-size: 28px;
    color: #1a1a1a;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.mobile-menu-close:hover {
    background: #f5f5f5;
}

/* =========================================================================
   Mobile Menu Items
   ========================================================================= */
.mobile-menu {
    padding: 20px 0;
}

.mobile-menu .menu-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-menu .menu-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
    transition: background 0.2s ease;
}

.mobile-menu .menu-item > a:hover {
    background: linear-gradient(90deg, #f9f9f9 0%, #eaeaea 100%);
}

.mobile-menu .has-dropdown > a::after {
    content: "+";
    font-size: 18px;
    transition: transform 0.3s ease;
}

.mobile-menu .has-dropdown.active > a::after {
    content: "−";
}

/* =========================================================================
   Mobile Dropdown Menu (با ارتفاع واقعی)
   ========================================================================= */
.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    transition: max-height 0.4s ease, padding 0.4s ease;
    border-radius: 8px;
    margin: 0 10px;
    padding: 0;
}

.mobile-dropdown-menu li a {
    display: block;
    padding: 16px 25px 16px 40px;
    font-size: 15px;
    color: #444;
    border-top: 1px solid rgba(0,0,0,0.05);
    transition: background 0.2s ease, padding-left 0.2s ease;
}

.mobile-dropdown-menu li a:hover {
    background: #f0f0f0;
    color: #000;
    padding-left: 45px;
}

/* =========================================================================
   Mobile Search
   ========================================================================= */
.mobile-search {
    padding: 25px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.mobile-search .header-search {
    width: 100%;
    justify-content: flex-start;
    font-size: 20px;
}

/* =========================================================================
   Scrollbar Custom for Mobile Menu
   ========================================================================= */
.mobile-menu-container::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu-container::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-menu-container::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 10px;
}

/* =========================================================================
   Responsive Breakpoints
   ========================================================================= */
@media (max-width: 1200px) {
    .premium-menu { gap: 32px; }
}

@media (max-width: 992px) {
    .premium-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .premium-header-container { padding: 0 20px; height: 75px; }
    .header-logo img { height: 34px; }
}

@media (max-width: 576px) {
    .premium-header-container { padding: 0 16px; height: 70px; }
    .header-logo img { height: 30px; }
    .mobile-menu-container { width: 90%; }
}

/* =========================================================================
   Smooth Hover & Gradient Effects
   ========================================================================= */
.premium-menu > .menu-item > a:hover {
    color: #ff4a57;
}

.dropdown-menu li a:hover {
    background: linear-gradient(90deg,#f7f7f7 0%,#eaeaea 100%);
}

.header-search:hover {
    color: #ff4a57;
}

.mobile-menu .menu-item > a:hover {
    background: linear-gradient(90deg,#f9f9f9 0%,#eaeaea 100%);
}/* End custom CSS */