/* Header Styles based on reference design */
:root {
    --theme-color: #ff6f00;
    --theme-color-rgb: 255, 111, 0;
}

/* Container fluid responsive */
.container-fluid-lg {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1400px) {
    .container-fluid-lg {
        max-width: 1400px;
        padding: 0 30px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .container-fluid-lg {
        max-width: 1200px;
        padding: 0 20px;
    }
}

@media (max-width: 1199px) {
    .container-fluid-lg {
        padding: 0 15px;
    }
}

/* Top Header */
.top-header {
    background-color: #232323;
    padding: 8px 0;
    font-size: 12px;
}

.top-header-black {
    background-color: #000;
    color: #fff;
}

.border-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.border-list li {
    color: #fff;
    font-size: 12px;
}

.dropdown-toggle {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle:hover {
    color: var(--theme-color);
}

/* Main Header */
.main-header {
    background: linear-gradient(135deg, var(--white) 0%, var(--extra-light) 100%);
    box-shadow: 0 2px 12px var(--boxshadow-light-color);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 111, 0, 0.1);
}

.main-header.scrolled {
    background: var(--white);
    box-shadow: 0 4px 25px var(--boxshadow-color);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 111, 0, 0.2);
}

/* Dark mode header styles */
[data-theme="dark"] .main-header {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--background-color) 100%);
    border-bottom: 1px solid rgba(255, 111, 0, 0.2);
}

[data-theme="dark"] .main-header.scrolled {
    background: rgba(30, 30, 30, 0.95);
    border-bottom: 1px solid rgba(255, 111, 0, 0.3);
}

/* Dark mode mobile menu */
[data-theme="dark"] .mobile-menu {
    background: linear-gradient(135deg, var(--background-color) 0%, var(--card-bg) 100%) !important;
    border-top: 1px solid var(--border-color) !important;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.4) !important;
}

[data-theme="dark"] .mobile-menu ul li a {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .mobile-menu ul li a i {
    color: var(--text-light) !important;
}

[data-theme="dark"] .mobile-menu ul li a span {
    color: var(--text-light) !important;
}

[data-theme="dark"] .mobile-menu ul li a.active,
[data-theme="dark"] .mobile-menu ul li a:hover {
    color: var(--primary-color) !important;
}

[data-theme="dark"] .mobile-menu ul li a.active i,
[data-theme="dark"] .mobile-menu ul li a:hover i {
    color: var(--primary-color) !important;
}

[data-theme="dark"] .mobile-menu ul li a.active span,
[data-theme="dark"] .mobile-menu ul li a:hover span {
    color: var(--primary-color) !important;
}

.search-header {
    border-bottom: none;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    min-height: 80px;
    position: relative;
    width: 100%;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 0;
    transition: all 0.3s ease;
    position: relative;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--theme-color);
}

/* Dark mode nav links */
[data-theme="dark"] .nav-link {
    color: var(--text-light) !important;
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
    color: var(--theme-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--theme-color), #ff8f00);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.brand-logo {
    flex-shrink: 0;
    margin-right: 40px;
}

.brand-logo img {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.brand-logo:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(255, 111, 0, 0.3));
}

/* Dark/Light mode logo switching */
body.dark .logo-white {
    display: block;
}

body.dark .logo-dark {
    display: none;
}

body.light .logo-white {
    display: none;
}

body.light .logo-dark {
    display: block;
}

/* Category Menu */
.category-menu {
    position: relative;
}

.btn-solid-default {
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-solid-default:hover {
    background-color: transparent;
    color: var(--theme-color);
}

.category-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.category-menu:hover .category-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-dropdown ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.category-dropdown ul li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-dropdown ul li a:hover {
    background-color: #f8f9fa;
    color: var(--theme-color);
}



/* Menu Right */
.menu-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.menu-right ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.menu-right ul li {
    position: relative;
}

.toggle-nav {
    display: none !important; /* Force hidden on desktop */
    cursor: pointer;
    font-size: 24px;
    color: #495057;
    padding: 0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 111, 0, 0.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .toggle-nav {
        display: block;
    }
}

.toggle-nav:hover {
    color: var(--theme-color);
    background: rgba(255, 111, 0, 0.1);
    border-color: rgba(255, 111, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.15);
}

.toggle-nav i {
    transition: all 0.3s ease;
}

.toggle-nav:hover i {
    transform: scale(1.1);
}

.search-box {
    display: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--theme-color), #ff8f00);
}

/* Cart and Wishlist */
.cart-media {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.cart-media:hover {
    background-color: rgba(255, 111, 0, 0.1);
    transform: translateY(-1px);
}

.cart-icon {
    position: relative;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon i {
    font-size: 18px;
    color: #555;
    transition: all 0.3s ease;
}

.cart-media:hover .cart-icon i {
    color: var(--theme-color);
    transform: scale(1.15);
}

.cart-icon .label {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, var(--theme-color), #e55a00);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cart-content span {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    display: none;
}

.cart-media:hover .cart-content span {
    color: var(--theme-color);
}

@media (min-width: 992px) {
    .cart-content span {
        display: block;
    }
    
    .cart-media {
        gap: 10px;
        padding: 8px 12px;
    }
}

.onhover-dropdown {
    position: relative;
}

.cart-media {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-media:hover {
    background: rgba(255, 111, 0, 0.1);
    border-color: rgba(255, 111, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.15);
}

.cart-icon {
    position: relative;
    font-size: 22px;
    color: #495057;
    transition: all 0.3s ease;
}

.cart-media:hover .cart-icon {
    color: var(--theme-color);
    transform: scale(1.1);
}

.label {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, var(--theme-color), #ff8f00);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 111, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.cart-content span {
    font-size: 14px;
    color: #495057;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cart-media:hover .cart-content span {
    color: var(--theme-color);
}

.btn-spacing {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
}

.onhover-div {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 16px;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(255, 111, 0, 0.1);
    backdrop-filter: blur(10px);
}

.onhover-dropdown:hover .onhover-div {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-menu {
    padding: 20px;
}

.cart-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eff2f7;
}

.cart-empty, .wislist-empty {
    text-align: center;
    padding: 30px 20px;
}

.cart-empty i, .wislist-empty i {
    font-size: 40px;
    color: #ccc;
    margin-bottom: 10px;
}

/* Navigation Menu */
.main-navbar .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 30px;
}

.nav-menu .nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu .nav-link:hover {
    color: var(--theme-color);
}

.nav-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--theme-color);
    transition: width 0.3s ease;
}

.nav-menu .nav-link:hover::after {
    width: 100%;
}

.gradient-title {
    background: linear-gradient(45deg, var(--theme-color), #ff8f00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Dropdown submenu */
.dropdown {
    position: relative;
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.dropdown:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-submenu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-submenu li a:hover {
    background-color: #f8f9fa;
    color: var(--theme-color);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 8px 0 12px;
    border-top: 1px solid #e9ecef;
}

.mobile-menu ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.mobile-menu ul li {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mobile-menu ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 50px;
}

.mobile-menu ul li a.active {
    color: var(--theme-color);
    background: rgba(255, 111, 0, 0.1);
    transform: translateY(-2px);
}

.mobile-menu ul li a:hover {
    color: var(--theme-color);
    background: rgba(255, 111, 0, 0.05);
    transform: translateY(-1px);
}

.mobile-menu ul li a i {
    font-size: 20px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.mobile-menu ul li a.active i {
    transform: scale(1.1);
}

.mobile-menu ul li a span {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile menu active indicator */
.mobile-menu ul li a.active::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--theme-color);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 111, 0, 0.5);
}

/* Search Full */
.search-full {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.search-full.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-full .input-group {
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .container-fluid-lg {
        padding: 0 15px;
    }
    
    .main-menu {
        padding: 10px 0;
        min-height: 65px;
    }
    
    .search-box1 {
        max-width: 300px;
        margin: 0 15px;
    }
    
    .menu-right ul {
        gap: 10px;
    }
    
    .brand-logo img {
        max-height: 40px;
    }

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Mobile Navigation Menu */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100%;
    background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
    z-index: 1001;
    transition: right 0.3s ease;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 111, 0, 0.1);
    background: linear-gradient(135deg, var(--theme-color) 0%, #ff8f00 100%);
    color: white;
}

.mobile-nav-logo img {
    max-height: 40px;
    width: auto;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-nav-content {
    padding: 20px 0;
}

.mobile-nav-links {
    padding: 0 20px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--theme-color);
    padding-left: 10px;
}

.mobile-nav-link i {
    width: 20px;
    font-size: 18px;
}

.mobile-nav-search {
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin: 20px 0;
}

.mobile-search-box {
    display: flex;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-search-box:focus-within {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.1);
}

.mobile-search-input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 14px;
    outline: none;
    background: transparent;
}

.mobile-search-btn {
    background: var(--theme-color);
    border: none;
    color: white;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-search-btn:hover {
    background: #e55a00;
}

.mobile-nav-actions {
    padding: 0 20px;
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--theme-color) 0%, #ff8f00 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.mobile-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
    }
    
    .toggle-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, var(--theme-color) 0%, #ff8f00 100%);
        color: white;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 18px;
        padding: 0;
    }
    
    .toggle-nav:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
    }
    
    .search-box1 {
        display: none;
    }
    
    .menu-right ul {
        gap: 12px;
    }
    
    .cart-content span {
        display: none;
    }
    
    .brand-logo {
        margin-right: 20px;
        flex: 1;
    }
    
    .brand-logo img {
        max-height: 50px;
    }
    
    .cart-media {
        width: 45px;
        height: 45px;
        background: rgba(255, 111, 0, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .cart-media:hover {
        background: rgba(255, 111, 0, 0.2);
        transform: translateY(-2px);
    }
    
    .cart-media i {
        color: var(--theme-color);
        font-size: 18px;
    }
    
    .cart-count {
        position: absolute;
        top: -5px;
        right: -5px;
        background: #ff4757;
        color: white;
        font-size: 10px;
        font-weight: bold;
        padding: 2px 6px;
        border-radius: 10px;
        min-width: 18px;
        text-align: center;
    }
}
    
    .main-navbar .nav-menu {
        position: fixed;
        top: 0;
        left: -320px;
        width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        box-shadow: 5px 0 25px rgba(0,0,0,0.15);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1001;
        overflow-y: auto;
        border-right: 2px solid rgba(255, 111, 0, 0.1);
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .main-navbar .nav-menu.open {
        left: 0;
    }
    
    .nav-menu .back-btn {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .close-btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 20px 25px;
        background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
        color: white;
        margin: 0;
        font-weight: 600;
        font-size: 16px;
    }
    
    .mobile-back {
        cursor: pointer;
        font-size: 24px;
        color: white;
        transition: all 0.3s ease;
        padding: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-back:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }
    
    .nav-menu li {
        width: 100%;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 18px 25px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--theme-color);
        background: rgba(255, 111, 0, 0.05);
        border-left-color: var(--theme-color);
        transform: translateX(5px);
    }
    
    .nav-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 10px;
        border-radius: 5px;
    }
    
    .mobile-poster {
        margin-top: auto;
        padding: 25px;
        background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
        color: white;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-contain h5 {
        margin: 0 0 8px 0;
        font-size: 18px;
        font-weight: 600;
        color: white;
    }
    
    .mobile-contain p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .mobile-contain .btn {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        font-weight: 500;
        padding: 10px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .mobile-contain .btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
}

@media (max-width: 991px) {
    .main-nav {
        display: block;
    }
    
    .toggle-nav {
        display: block;
    }
    
    /* Hide desktop navigation on mobile */
    .main-nav .nav-menu {
        display: none;
    }
    
    /* Mobile Navigation Menu */
    .main-navbar .nav-menu {
        position: fixed;
        top: 0;
        left: -320px;
        width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        box-shadow: 5px 0 25px rgba(0,0,0,0.15);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1001;
        overflow-y: auto;
        border-right: 2px solid rgba(255, 111, 0, 0.1);
        display: flex;
    }
    
    .main-navbar .nav-menu.open {
        left: 0;
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile navigation items */
    .main-navbar .nav-menu li {
        width: 100%;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .main-navbar .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .main-navbar .nav-menu .nav-link {
        display: block;
        padding: 18px 25px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }
    
    .main-navbar .nav-menu .nav-link:hover,
    .main-navbar .nav-menu .nav-link.active {
        color: var(--theme-color);
        background: rgba(255, 111, 0, 0.05);
        border-left-color: var(--theme-color);
        transform: translateX(5px);
    }
    
    /* Mobile menu header */
    .main-navbar .close-btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 20px 25px;
        background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
        color: white;
        margin: 0;
        font-weight: 600;
        font-size: 16px;
    }
    
    .main-navbar .mobile-back {
        cursor: pointer;
        font-size: 24px;
        color: white;
        transition: all 0.3s ease;
        padding: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-navbar .mobile-back:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }
    
    /* Mobile menu footer */
    .main-navbar .mobile-poster {
        margin-top: auto;
        padding: 25px;
        background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
        color: white;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-navbar .mobile-contain h5 {
        margin: 0 0 8px 0;
        font-size: 18px;
        font-weight: 600;
        color: white;
    }
    
    .main-navbar .mobile-contain p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .main-navbar .mobile-contain .btn {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        font-weight: 500;
        padding: 10px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .main-navbar .mobile-contain .btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
}

@media (max-width: 767px) {
    .top-header {
        display: none;
    }
    
    .toggle-nav {
        display: block;
    }
    
    .menu-right ul {
        gap: 10px;
    }
    
    .cart-media {
        padding: 8px;
    }
    
    .cart-icon {
        width: 22px;
        height: 22px;
    }
    
    .cart-icon i {
        font-size: 18px;
    }
    
    .label {
        top: -8px;
        right: -8px;
        font-size: 10px;
        padding: 2px 6px;
        border-radius: 10px;
        min-width: 18px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .top-header {
        display: none;
    }
    
    .main-menu {
        padding: 10px 0;
    }
    
    .brand-logo img {
        max-height: 35px;
    }
    
    .menu-right ul {
        gap: 10px;
    }
    
    .cart-media {
        padding: 5px;
    }
    
    .cart-content span {
        display: none;
    }
    
    .onhover-div {
        right: -50px;
        min-width: 250px;
    }
}

@media (max-width: 575px) {
    .border-list {
        gap: 10px;
    }
    
    .border-list li {
        font-size: 11px;
    }
    
    .main-menu {
        padding: 8px 0;
    }
    
    .brand-logo img {
        max-height: 30px;
    }
    
    .btn-spacing {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* Install button styles */
.install-btn {
    background: linear-gradient(45deg, var(--theme-color), #ff8f00);
    border: none;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.install-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

/* Font utilities */
.font-light {
    color: #7e7e7e !important;
}

.font-default {
    color: #232323 !important;
}

/* Feather icons */
[data-feather] {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.badge-text {
    background: linear-gradient(45deg, var(--theme-color), #ff8f00);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

.hero-title {
    font-size: calc(2.5rem + 1.5vw);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #212529;
}

.gradient-text {
    background: linear-gradient(45deg, var(--theme-color), #ff8f00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.hero-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary-gradient {
    background: linear-gradient(45deg, var(--theme-color), #ff8f00);
    border: none;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.4);
    color: #fff;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--theme-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

.hero-social {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-label {
    font-weight: 500;
    color: #6c757d;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.social-link:hover {
    background: var(--theme-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

/* Hero Image Section */
.hero-image {
    position: relative;
    padding: 20px;
}

.hero-image-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.hero-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: #fff;
}

.hero-slide {
    display: none;
    padding: 30px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.5s ease-in-out;
}

.hero-slide.active {
    display: block;
}

.hero-slide img {
    max-width: 100%;
    width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    box-sizing: border-box;
}

.hero-slide:hover img {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--theme-color), #ff8f00);
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.slider-btn:hover {
    background: var(--theme-color);
    color: #fff;
    transform: scale(1.1);
}

.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--theme-color);
    transform: scale(1.2);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: var(--theme-color);
    font-size: 18px;
}

.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: -15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 111, 0, 0.1), rgba(255, 143, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

/* Responsive Design for Hero Section */
@media (max-width: 991px) {
    .hero-section {
        padding: 80px 0 30px;
    }
    
    .hero-title {
        font-size: calc(2rem + 1vw);
    }
    
    .hero-stats {
        gap: 20px;
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-social {
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
        margin: 0 auto 30px;
    }
    
    .hero-stats {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary-gradient,
    .btn-outline-primary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .hero-slider-nav {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 10px;
    }
    
    .stat-item h3 {
        font-size: 1.3rem;
    }
    
    .stat-item span {
        font-size: 0.8rem;
    }
    
    .btn-primary-gradient,
    .btn-outline-primary {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
}

/* ===== REFERENCE ANIMATION STYLES ===== */
/* Hero Section Animation Effects - Based on banner-style-2 */
.hero-image-container {
    position: relative;
    cursor: pointer;
}

.hero-slide {
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
}

.hero-slide img {
    transition: all 0.5s ease;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-slide .product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.5s ease;
    backdrop-filter: blur(4px);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hover Effects - Reference Animation */
.hero-image-container:hover .hero-slide.active .product-badge {
    background: var(--theme-color, #ff6f00);
    color: #fff;
    transform: scale(1.05);
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

.hero-image-container:hover .hero-slide.active img {
    transform: scale(1.02);
    filter: brightness(1.1) contrast(1.05);
    transition: all 0.5s ease;
}

.hero-image-container:hover .hero-slide.active {
    backdrop-filter: blur(5px);
}

.hero-image-container:hover .hero-slide.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 111, 0, 0.1), rgba(255, 111, 0, 0.05));
    transition: all 0.5s ease;
    pointer-events: none;
}

/* Enhanced floating elements animation */
.floating-elements .floating-card {
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-container:hover .floating-elements .floating-card {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.95);
}

/* Slider navigation enhancement */
.hero-slider-nav .slider-btn {
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
}

.hero-image-container:hover .hero-slider-nav .slider-btn {
    background: var(--theme-color, #ff6f00);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

/* Slider dots enhancement */
.hero-slider-dots .dot {
    transition: all 0.5s ease;
}

.hero-image-container:hover .hero-slider-dots .dot.active {
    background: var(--theme-color, #ff6f00);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 111, 0, 0.5);
}

/* Overall container animation */
.hero-image {
    transition: all 0.5s ease;
}

.hero-image:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* ===== MODERN PRODUCT & SERVICE ANIMATIONS ===== */

/* Product Cards Animation */
.menu__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.menu__card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.menu__card:nth-child(1) { animation-delay: 0.1s; }
.menu__card:nth-child(2) { animation-delay: 0.2s; }
.menu__card:nth-child(3) { animation-delay: 0.3s; }
.menu__card:nth-child(4) { animation-delay: 0.4s; }
.menu__card:nth-child(5) { animation-delay: 0.5s; }
.menu__card:nth-child(6) { animation-delay: 0.6s; }

.menu__card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 111, 0, 0.2);
}

.menu__card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.4s ease;
    border-radius: 15px 15px 0 0;
}

.menu__card:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) saturate(1.1);
}

.menu__card h4 {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu__card:hover h4 {
    color: var(--theme-color, #ff6f00);
    transform: translateX(5px);
}

.menu__card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--theme-color, #ff6f00), transparent);
    transition: left 0.4s ease;
}

.menu__card:hover h4::after {
    left: 0;
}

.menu__card p {
    transition: all 0.3s ease;
    line-height: 1.6;
}

.menu__card:hover p {
    color: #555;
    transform: translateY(-2px);
}

.menu__card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transition: all 0.3s ease;
}

.menu__card:hover .menu__card__footer {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.05) 0%, rgba(255, 111, 0, 0.1) 100%);
}

.menu__card__footer h3 {
    color: var(--theme-color, #ff6f00);
    font-weight: 700;
    transition: all 0.3s ease;
}

.menu__card:hover .menu__card__footer h3 {
    transform: scale(1.1);
    text-shadow: 0 2px 4px rgba(255, 111, 0, 0.2);
}

.menu__card__footer .btn {
    background: linear-gradient(135deg, var(--theme-color, #ff6f00), #ff8f00);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu__card__footer .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.menu__card:hover .menu__card__footer .btn {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.4);
}

.menu__card:hover .menu__card__footer .btn::before {
    left: 100%;
}

/* Service Cards Animation */
.service__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service__card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    overflow: hidden;
}

.service__card:nth-child(1) { animation-delay: 0.2s; }
.service__card:nth-child(2) { animation-delay: 0.4s; }
.service__card:nth-child(3) { animation-delay: 0.6s; }

.service__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.05), rgba(255, 111, 0, 0.1));
    transition: left 0.5s ease;
    z-index: 0;
}

.service__card:hover::before {
    left: 0;
}

.service__card:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 111, 0, 0.2);
}

.service__card > * {
    position: relative;
    z-index: 1;
}

.service__card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.service__card:hover img {
    transform: scale(1.1) rotateY(10deg);
    filter: drop-shadow(0 10px 20px rgba(255, 111, 0, 0.3));
}

.service__card h4 {
    transition: all 0.3s ease;
    position: relative;
}

.service__card:hover h4 {
    color: var(--theme-color, #ff6f00);
    transform: translateY(-5px);
}

.service__card p {
    transition: all 0.3s ease;
    line-height: 1.6;
}

.service__card:hover p {
    color: #555;
    transform: translateY(-3px);
}

.service__card a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--theme-color, #ff6f00);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.service__card:hover a {
    transform: translateX(10px);
    color: #ff8f00;
}

.service__card a span {
    transition: all 0.3s ease;
}

.service__card:hover a span {
    transform: translateX(5px) rotate(45deg);
}

/* Keyframes for animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .menu__grid,
    .service__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu__card:hover,
    .service__card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .service__card:hover {
        transform: translateY(-8px);
    }
    
    .menu__card img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .menu__card,
    .service__card {
        margin: 0 1rem;
    }
    
    .menu__card:hover,
    .service__card:hover {
        transform: translateY(-3px);
    }
    
    .service__card:hover {
        transform: translateY(-5px);
    }
}

/* ===== VIDEO SECTION STYLES ===== */
/* YouTube-style Video Section */
.video-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.video-section .section__header {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.video-section .section__header span {
    color: var(--theme-color, #ff6f00);
}

/* Main Video Container */
.main-video-container {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 20px;
}

.video-info .video-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-meta {
    font-size: 0.9rem;
    color: #6c757d;
}

.video-meta i {
    margin-right: 5px;
    color: var(--theme-color, #ff6f00);
}

/* Video Playlist Styles */
.video-playlist {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.playlist-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--theme-color, #ff6f00);
}

.playlist-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 15px;
    border: 1px solid transparent;
}

.playlist-item:hover {
    background: #f8f9fa;
    border-color: rgba(255, 111, 0, 0.2);
    transform: translateX(5px);
}

.playlist-thumbnail {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 68px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.playlist-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.playlist-item:hover .playlist-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
    opacity: 0;
}

.playlist-item:hover .play-overlay {
    opacity: 1;
    background: var(--theme-color, #ff6f00);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.playlist-content {
    flex: 1;
    min-width: 0;
}

.playlist-content .video-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #212529;
    line-height: 1.3;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.playlist-item:hover .playlist-content .video-title {
    color: var(--theme-color, #ff6f00);
}

.playlist-content .video-meta {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
}

/* View All Button */
.video-playlist .btn {
    background: transparent;
    border: 2px solid var(--theme-color, #ff6f00);
    color: var(--theme-color, #ff6f00);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.video-playlist .btn:hover {
    background: var(--theme-color, #ff6f00);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

/* Mobile Responsive - Aggressive Restructure */
@media (max-width: 991px) {
    .video-section {
        padding: 40px 0;
        background: #f5f5f5;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .video-wrapper {
        padding-bottom: 56.25%;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .main-video-container {
        margin-bottom: 25px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .video-playlist {
        position: static;
        margin-top: 20px;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }
    
    .playlist-item {
        background: #fff;
        margin: 0 0 10px 0;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .playlist-thumbnail {
        width: 100px;
        height: 56px;
        border-radius: 6px;
        flex-shrink: 0;
    }
    
    .playlist-content {
        flex: 1;
        min-width: 0;
    }
    
    .playlist-content .video-title {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 4px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .playlist-content .video-meta {
        font-size: 0.8rem;
        color: #666;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 20px 0;
        background: #f8f9fa;
    }
    
    .video-section .container {
        padding: 0 15px;
    }
    
    .video-section .title {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .video-section .section__header {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .video-wrapper {
        height: 200px;
        padding-bottom: 0;
        border-radius: 8px;
    }
    
    .main-video-container {
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    
    .video-info {
        padding: 12px;
    }
    
    .video-info .video-title {
        font-size: 0.9rem;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    
    .video-meta {
        font-size: 0.75rem;
        gap: 10px;
    }
    
    /* Completely redesigned mobile playlist */
    .video-playlist {
        padding: 0;
        background: transparent;
        box-shadow: none;
        margin-top: 15px;
    }
    
    .playlist-title {
        font-size: 1rem;
        margin-bottom: 12px;
        padding: 0;
        color: #212529;
        font-weight: 600;
        text-align: left;
    }
    
    .playlist-item {
        background: #fff;
        padding: 8px;
        margin-bottom: 6px;
        gap: 8px;
        border-radius: 6px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
        border: none;
        display: flex;
        align-items: flex-start;
    }
    
    .playlist-item:hover {
        transform: none;
        background: #f8f9fa;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }
    
    .playlist-thumbnail {
        width: 60px;
        height: 34px;
        border-radius: 4px;
        flex-shrink: 0;
        position: relative;
    }
    
    .playlist-content {
        flex: 1;
        min-width: 0;
        padding-left: 2px;
    }
    
    .playlist-content .video-title {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 2px;
        font-weight: 500;
        color: #212529;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .playlist-content .video-meta {
        font-size: 0.65rem;
        color: #666;
        margin: 0;
        line-height: 1.1;
    }
    
    .video-duration {
        font-size: 7px;
        padding: 1px 2px;
        border-radius: 2px;
        bottom: 2px;
        right: 2px;
    }
    
    .play-overlay {
        width: 16px;
        height: 16px;
        font-size: 6px;
        opacity: 0.8;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .playlist-item:hover .play-overlay {
        background: var(--theme-color, #ff6f00);
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@media (max-width: 576px) {
    .video-section {
        padding: 15px 0;
        background: #f8f9fa;
    }
    
    .video-section .container {
        padding: 0 10px;
    }
    
    .video-section .title {
        margin-bottom: 15px;
        text-align: center;
    }
    
    .video-section .section__header {
        font-size: 1.3rem;
    }
    
    .video-wrapper {
        height: 180px;
        border-radius: 6px;
    }
    
    .main-video-container {
        margin-bottom: 15px;
        border-radius: 6px;
    }
    
    .video-info {
        padding: 10px;
    }
    
    .video-info .video-title {
        font-size: 0.85rem;
        line-height: 1.2;
        margin-bottom: 5px;
    }
    
    .video-meta {
        font-size: 0.7rem;
        gap: 8px;
    }
    
    .video-playlist {
        padding: 0;
        margin-top: 10px;
    }
    
    .playlist-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
        padding: 0;
    }
    
    .playlist-item {
        margin-bottom: 4px;
        padding: 6px;
        gap: 6px;
        border-radius: 4px;
    }
    
    .playlist-thumbnail {
        width: 50px;
        height: 28px;
        border-radius: 3px;
    }
    
    .playlist-content .video-title {
        font-size: 0.7rem;
        line-height: 1.1;
        margin-bottom: 1px;
    }
    
    .playlist-content .video-meta {
        font-size: 0.6rem;
    }
    
    .video-duration {
        font-size: 6px;
        padding: 0px 2px;
    }
    
    .play-overlay {
        width: 14px;
        height: 14px;
        font-size: 5px;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 35px 0;
    }
    
    .video-wrapper {
        height: 200px;
    }
    
    .video-playlist {
        padding: 15px 10px;
        margin-top: 15px;
    }
    
    .playlist-title {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .playlist-item {
        padding: 6px;
        margin-bottom: 6px;
        gap: 8px;
    }
    
    .playlist-thumbnail {
        width: 80px;
        height: 45px;
        border-radius: 4px;
    }
    
    .playlist-content .video-title {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .playlist-content .video-meta {
        font-size: 0.7rem;
    }
    
    .video-duration {
        font-size: 9px;
        padding: 1px 3px;
    }
    
    .play-overlay {
        width: 20px;
        height: 20px;
        font-size: 8px;
    }
}

@media (max-width: 360px) {
    .video-section {
        padding: 30px 0;
    }
    
    .video-wrapper {
        height: 180px;
    }
    
    .video-playlist {
        padding: 12px 8px;
    }
    
    .playlist-item {
        padding: 5px;
        gap: 6px;
    }
    
    .playlist-thumbnail {
        width: 70px;
        height: 40px;
    }
    
    .playlist-content .video-title {
        font-size: 0.75rem;
    }
    
    .playlist-content .video-meta {
        font-size: 0.65rem;
    }
}
