.tamis-header {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    top: 0;
    z-index: 1000;
	position: relative
}

.header-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
}

/* ========== Logo ========== */
.tamis-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-link {
    display: block;
}

/* ========== Desktop Navigation ========== */
.desktop-nav,
.nav-list {
    display: flex;
    align-items: center;
}

.nav-list {
list-style: none;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 20px 12px;
    color: #737577;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    color: #00A9E0;
}

.nav-icon {
    stroke: currentColor;
    flex-shrink: 0;
}

/* ========== Left Navigation ========== */
.left-nav .nav-link {
    padding: 8px 15px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #27a7e0;
    font-weight: 600;
}

.left-nav .nav-link:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    transform: translateY(-2px);
}

/* ========== Megamenu ========== */
.tamis-megamenu {
    position: absolute;
    top: 101%;
    right: 0;
    background: white;
    box-shadow: rgba(0,0,0,.1) 0 10px 10px 0, inset 0 127px 12px -127px rgba(0,0,0,.15);
    border-radius: 0 0 16px 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    min-width: 1000px;
}

.nav-item:hover .tamis-megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-inner {
    padding: 25px;
    display: flex;
    gap: 25px;
}

.megamenu-small {
    min-width: 900px;
}

/* ========== Featured Box ========== */
.featured-column {
    min-width: 220px;
    flex-shrink: 0;
}

.featured-box {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-top {
    background-color: #91e8ff;
    height: 43%;
    position: relative;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    border-bottom: 1px solid #434345;
}

.featured_box_buildings {
    width: 100%;
    position: absolute;
    bottom: -3px;
    z-index: 1;
}

.featured-bottom {
    background-color: #f8f8f8;
    height: 57%;
    position: relative;
    border-radius: 0 0 5px 5px;
}

.discount-badge {
    text-align: center;
}

.discount-amount {
    font-weight: 600;
    font-size: 24px;
    color: #6d6d6d;
    padding-top: 55px;
}

.discount-text {
    font-weight: 400;
    font-size: 13px;
    color: #8c8c8c;
}

.discount-code {
    font-weight: 600;
    margin: 20px auto 0;
    width: 70%;
    font-size: 22px;
    color: #fff;
    border: 2px dotted #f8f8f8;
    background-color: #fdc827;
    border-radius: 5px;
    padding: 5px;
    user-select: all;
}

/* ========== Services Grid ========== */
.services-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 1;
}

.service-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #5b5b5b;
    position: relative;
    min-height: 25px;
}

.service-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a202c;
}

.mainservice_img {
    position: absolute;
    width: 30%;
    max-width: 50px;
    left: 0;
    bottom: -1px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
	padding: 0;
    gap: 4px;
}

.service-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.service-list a {
    color: #4a5568;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    flex: 1;
}

.service-list a:hover {
    color: #00A9E0;
    padding-right: 4px;
}

/* ========== Badges ========== */
.badgee {
    font-size: 10px;
    padding: 0 0.3em;
    border-radius: 2px;
    text-align: center;
    font-weight: 400;
    min-width: 50px;
    background-color: inherit;
    border: 1px solid #ccc;
    color: #ccc;
}

.badge-blue {
    background-color: #33abfd;
    border-color: #33abfd;
    color: #fff;
}

.badge-red {
    background-color: #f7532a;
    border-color: #f7532a;
    color: #fff;
}

.badge-yellow {
    background: #fef3c7;
    color: #92400e;
    border-color: #fef3c7;
}

/* ========== Order Columns ========== */
.order-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.order-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-header {
    border-bottom: 1px solid #5b5b5b;
    position: relative;
    margin-bottom: 12px;
}

.order-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a202c;
}

.order-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.7;
}

.order-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #bae6fd;
    border-radius: 10px;
    text-decoration: none;
    color: #0369a1;
    transition: all 0.3s;
    margin-top: auto;
}

.order-btn:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.2);
}

.order-btn span {
    font-size: 12px;
}

.order-btn .thick {
    font-size: 15px;
    font-weight: 700;
}

.order-btn-call {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-color: #86efac;
    color: #166534;
}

.order-btn-call:hover {
    background: linear-gradient(135deg, #bbf7d0 0%, #86efac 100%);
}

/* ========== App Buttons ========== */
.app-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: auto;
}

.app-btn {
    padding: 8px 12px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.app-btn:hover {
    border-color: #00A9E0;
    color: #00A9E0;
    transform: translateY(-2px);
}

.nav-item.has-megamenu::after {
    content: '';
    position: fixed;
    top: var(--header-height, 70px); /* ارتفاع هدر */
    left: 0;
    width: 100vw;
    height: calc(100vh - var(--header-height, 70px));
    background: radial-gradient(ellipse 130% 70% at 50% 0%, 
        rgba(14,165,233,0.48) 0%,
        rgba(56,189,248,0.40) 25%,
        rgba(125,211,252,0.32) 50%,
        rgba(186,230,253,0.20) 75%,
        rgba(224,242,254,0.08) 100%);
    backdrop-filter: blur(1.2px) saturate(1.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
    z-index: 49;
    pointer-events: none;
}

.nav-item.has-megamenu:hover::after {
    opacity: 1;
    visibility: visible;
}

/* ========== Matte Effects ========== */
.header-container:has(.desktop-nav .nav-item:hover) .left-nav .nav-link,
.nav-list:has(.nav-item:nth-child(1):hover) .nav-item:nth-child(2) .nav-link,
.nav-list:has(.nav-item:nth-child(2):hover) .nav-item:nth-child(1) .nav-link {
    opacity: 0.35;
    filter: grayscale(0.6) blur(0.3px);
    transition: all 0.3s ease;
}

.nav-item:hover .nav-link {
    opacity: 1 !important;
    filter: none !important;
}

.nav-item.has-megamenu:hover .nav-link {
    color: #00A9E0;
    font-weight: 600;
}

/* ========== Mobile Menu Button ========== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #4a5568;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== Mobile Sidebar ========== */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 90vw;
    height: 100vh;
    background-color: #f8f8f8;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== Mobile Header ========== */
.mobile-header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 165px;
    position: relative;
}

.featured_box_top {
    background-color: #91e8ff;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    border-bottom: 1px solid #434345;
}

/* ========== Mobile Content ========== */
.mobile-content {
    padding: 18px;
}

.mobile-logo-area {
    text-align: center;
    margin-bottom: 15px;
}

.mobile-cta {
    display: block;
    background: linear-gradient(135deg, #56CCF2 0%, #2F80ED 100%);
    color: white;
    padding: 13px 25px;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(47, 128, 237, 0.3);
}

/* ========== Mobile Navigation ========== */
.mobile-nav {
    padding-top: 8px;
}

.mobile-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 11px;
    background-color: #e6e6e6;
    border-radius: 5px;
    padding: 0 10px;
}

.mobile-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    cursor: pointer;
    user-select: none;
}

.mobile-item-title {
    font-size: 13px;
    color: #6a6b6c;
}

.mobile-arrow {
    width: 18px;
    height: 18px;
    stroke: #718096;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-item.active .mobile-arrow {
    transform: rotate(90deg);
    stroke: #00A9E0;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 0 0 15px;
}

.mobile-item.active .mobile-submenu {
    max-height: 3000px;
    padding: 0 0 12px 15px;
}

/* ========== Mobile Service ========== */
.mobile-service {
    padding: 8px 0;
}

.mobile-service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 6px;
    user-select: none;
}

.mobile-service-title {
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    flex: 1;
}

.mobile-service.active .mobile-service-title {
    color: #00A9E0;
}

.mobile-service-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mobile-service-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0 0 12px;
}

.mobile-service.active .mobile-service-links {
    max-height: 500px;
    padding: 6px 0 0 12px;
}

.mobile-service-links a {
    color: #718096;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 0;
    transition: color 0.3s;
}

.mobile-service-links a:active {
    color: #00A9E0;
}

/* ========== Mobile Footer ========== */
.mobile-footer {
    margin: 40px 0;
}

.mobile-phone {
    padding: 12px 0;
    text-decoration: none;
    text-align: center;
    display: block;
    color: #5b5b5b;
    font-size: 1.35em;
    line-height: 1;
}

.mobile-phone-number {
    text-align: center;
    color: #5b5b5b;
    font-size: 1.1em;
}

.mobile-phone-text {
    font-size: 12px;
    color: #6a6b6c;
    text-align: center;
    margin-top: 9px;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .desktop-nav,
    .left-nav {
        display: none !important;
    }
    
    .mobile-toggle {
        display: flex !important;
    }
    
    .header-container {
        height: 60px;
        padding: 0 18px;
    }
    
    .tamis-logo {
        position: static;
        transform: none;
    }
    
    .logo-svg {
        width: 120px;
        height: 35px;
    }
}

@media (max-width: 360px) {
    .mobile-sidebar {
        width: 280px;
    }
    
    .logo-svg {
        width: 100px;
        height: 30px;
    }
}