/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Ensure proper stacking context */
body {
    position: relative;
    z-index: 1;
}

/* Force dropdown to be on top */
.dropdown {
    position: relative;
    z-index: 999999;
}

.dropdown.active {
    z-index: 999999;
}

/* Ensure dropdown content is always visible */
.dropdown.active .dropdown-menu,
.submenu-item:hover .sub-submenu,
.submenu-item:hover .mega-submenu {
    z-index: 999999;
}

/* Additional mobile-specific rules */
@media (max-width: 768px) {
    .submenu-item {
        position: relative;
        cursor: pointer;
    }
    
    .sub-submenu {
        position: absolute;
        left: 100%;
        top: 0;
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-10px);
        transition: all 0.3s ease;
        z-index: 999999;
        padding: 10px 0;
    }
    
    .mega-submenu {
        position: absolute;
        left: 100%;
        top: 0;
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        min-width: 300px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-10px);
        transition: all 0.3s ease;
        z-index: 999999;
        padding: 15px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    /* Show submenu when clicked/touched */
    .sub-submenu.show,
    .mega-submenu.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
        z-index: 999999 !important;
    }
    
    .submenu-item:hover .sub-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    .submenu-item:hover .mega-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    /* Add visual feedback for touch */
    .submenu-item:active {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background: linear-gradient(135deg, #f0f8ff 0%, #fff5f5 100%);
    direction: rtl;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
    width: 100%;
    position: relative;
    overflow: visible;
    z-index: 99999;
}

.header-top {
    padding: 10px 0;
    background: rgba(0,0,0,0.1);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
}

.phone-icon {
    font-size: 24px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.logo-img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

.header-main {
    padding: 20px 0;
}

.header-main .container {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 30px;
    align-items: center;
}

.login-section {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.login-section:hover {
    opacity: 0.8;
}

.user-icon {
    font-size: 18px;
}

.search-bar {
    display: flex;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: inherit;
}

.search-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #dc2626 0%, #1e3a8a 100%);
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.search-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Navigation Styles */
.main-nav {
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 25px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
    white-space: nowrap;
    min-width: fit-content;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255,255,255,0.25);
    border: 2px solid rgba(255,255,255,0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 999999;
}

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

.dropdown-content {
    padding: 20px;
}

.dropdown-column h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 8px;
}

.submenu-list {
    list-style: none;
}

.submenu-list li {
    margin-bottom: 8px;
}

.submenu-list a {
    color: #666;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    border-radius: 5px;
    transition: all 0.3s;
}

.submenu-list a:hover {
    background: #f0f2ff;
    color: #667eea;
    transform: translateX(-5px);
}

/* Sub-submenu styles */
.submenu-item {
    position: relative;
}

.sub-submenu {
    position: absolute;
    right: 100%;
    top: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s;
    z-index: 999999;
    padding: 10px 0;
}

.submenu-item:hover .sub-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sub-submenu li {
    margin: 0;
}

.sub-submenu a {
    color: #666;
    text-decoration: none;
    padding: 8px 15px;
    display: block;
    border-radius: 0;
    transition: all 0.3s;
    font-size: 14px;
}

.sub-submenu a:hover {
    background: #667eea;
    color: white;
    transform: none;
}

/* Mega Submenu Styles */
.mega-submenu {
    position: absolute;
    right: 100%;
    top: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s;
    z-index: 999999;
    padding: 15px;
    display: flex;
    gap: 20px;
}

.submenu-item:hover .mega-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mega-column {
    flex: 1;
    min-width: 180px;
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column li {
    margin: 0;
}

.mega-column a {
    color: #666;
    text-decoration: none;
    padding: 6px 10px;
    display: block;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 13px;
}

.mega-column a:hover {
    background: #667eea;
    color: white;
    transform: none;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
    z-index: 1;
    margin-top: 0;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slider-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.slide-overlay {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.slide.active .slide-overlay {
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    border: 2px solid transparent;
}

.slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    background: linear-gradient(45deg, #ef4444, #dc2626);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 100;
}

.slider-nav .nav-btn {
    width: 60px;
    height: 60px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 2rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.slider-nav .nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.indicator.active {
    background: #ffffff;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* Responsive Slider */
@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-overlay {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .slider-nav .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .slider-indicators {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 350px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
    }
    
    .slide-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .slider-nav {
        padding: 0 15px;
    }
    
    .slider-nav .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Product Showcase */
.product-showcase {
    padding: 60px 0;
    background: white;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.showcase-header h2 {
    font-size: 32px;
    color: #333;
    font-weight: 700;
}

.showcase-nav {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: #667eea;
    color: white;
}

/* Product Carousel */
.product-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.product-link {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.product-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    background: linear-gradient(135deg, #1e40af 0%, #b91c1c 100%);
}

/* Category Grid Styles */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card h3 {
    padding: 20px 20px 10px;
    font-size: 18px;
    color: #333;
    margin: 0;
}

.category-card p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.category-btn {
    display: block;
    background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s;
}

.category-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #b91c1c 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-main {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.welcome-section {
    text-align: center;
    margin-bottom: 40px;
}

.welcome-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.welcome-section p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-person,
.weight-calculator {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .sidebar .contact-person {
        padding: 15px;
        border-radius: 10px;
    }
    
    .sidebar .contact-person h3 {
        font-size: 16px;
    }
    
    .sidebar .contact-person p {
        font-size: 13px;
    }
    
    .sidebar .person-image {
        width: 80px;
        height: 80px;
        margin: 0 auto 15px;
    }
    
    .sidebar .contact-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .sidebar .contact-btn {
        padding: 8px 16px;
        font-size: 13px;
        width: 100%;
    }
}

.contact-person {
    text-align: center;
}

.person-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #667eea;
}

.person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-person h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-person p {
    color: #666;
    margin-bottom: 20px;
}

.contact-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.contact-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1e3a8a 100%);
    color: white;
}

.contact-btn.phone {
    background: linear-gradient(135deg, #dc2626 0%, #1e3a8a 100%);
    color: white;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Weight Calculator */
.weight-calculator h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group label {
    min-width: 80px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.form-group input {
    flex: 1;
    padding: 8px 12px;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.form-group span {
    font-size: 12px;
    color: #666;
    min-width: 60px;
}

.calculate-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: 10px;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.result {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 15px;
    font-weight: 600;
    color: #333;
    display: none;
}

.result.show {
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #fbbf24;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .header {
        position: relative;
        z-index: 999999;
    }
    
    .header-main .container {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    /* Mobile dropdown menu - vertical accordion style */
    .dropdown-menu {
        position: static;
        background: #f8f9fa;
        border-radius: 8px;
        box-shadow: none;
        min-width: auto;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow-y: auto;
        transform: none;
        transition: all 0.3s ease;
        margin-top: 8px;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 1200px;
        padding: 10px;
    }
    
    /* Mobile submenu items - vertical accordion */
    .submenu-item {
        position: relative;
        cursor: pointer;
        border-bottom: 1px solid #e1e5e9;
    }
    
    .submenu-item:last-child {
        border-bottom: none;
    }
    
    .submenu-item > a,
    .submenu-item > span {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 12px;
        background: white;
        border-radius: 6px;
        margin-bottom: 3px;
        text-decoration: none;
        color: #333;
        font-size: 14px;
    }
    
    .submenu-item > a::after,
    .submenu-item > span::after {
        content: '▼';
        font-size: 12px;
        transition: transform 0.3s;
    }
    
    .submenu-item.active > a::after,
    .submenu-item.active > span::after {
        transform: rotate(180deg);
    }
    
    /* Sub-submenu - vertical accordion */
    .sub-submenu {
        position: static;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
        min-width: auto;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        transition: all 0.3s ease;
        margin: 5px 0 10px 20px;
        padding: 0;
    }
    
    .submenu-item.active .sub-submenu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 300px !important;
        padding: 8px 0 !important;
    }
    
    /* Mega submenu - vertical accordion */
    .mega-submenu {
        position: static;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
        min-width: auto;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        transition: all 0.3s ease;
        margin: 5px 0 10px 20px;
        padding: 0;
        display: block;
        gap: 0;
    }
    
    .submenu-item.active .mega-submenu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 400px !important;
        padding: 10px !important;
    }
    
    .mega-column {
        min-width: auto;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .mega-column:last-child {
        margin-bottom: 0;
    }
    
    .mega-column h4 {
        color: #1e3a8a;
        font-size: 16px;
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .mega-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mega-column li {
        margin-bottom: 5px;
    }
    
    .mega-column a {
        color: #666;
        text-decoration: none;
        padding: 5px 10px;
        display: block;
        border-radius: 4px;
        transition: all 0.3s;
        font-size: 14px;
    }
    
    .mega-column a:hover {
        background: #667eea;
        color: white;
    }
    
    /* Remove hover effects on mobile */
    .submenu-item:hover .sub-submenu,
    .submenu-item:hover .mega-submenu {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        padding: 0;
    }
    
    /* Disabled link styling for mobile */
    .disabled-link {
        color: #333 !important;
        cursor: pointer !important;
        text-decoration: none !important;
        pointer-events: auto !important;
        opacity: 1 !important;
    }
    
    /* Sub-submenu links styling */
    .sub-submenu a {
        color: #666;
        text-decoration: none;
        padding: 8px 15px;
        display: block;
        border-radius: 4px;
        transition: all 0.3s;
        font-size: 14px;
    }
    
    .sub-submenu a:hover {
        background: #667eea;
        color: white;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .product-carousel {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        width: 100%;
    }
    
    .features-section {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        width: 100%;
    }
    
    .hero-slider {
        height: 400px;
        width: 100%;
        overflow: hidden;
    }
    
    .slide-overlay {
        padding: 20px 15px;
        margin: 0 10px;
        max-width: 90%;
    }
    
    .slider-nav {
        padding: 0 15px;
    }
    
    .slider-indicators {
        bottom: 15px;
    }
    
    .header-top .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .search-bar {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .product-carousel {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .contact-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .form-group {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .form-group label {
        min-width: auto;
        width: 100%;
    }
    
    .hero-slider {
        height: 350px;
        width: 100%;
        overflow: hidden;
    }
    
    .slide-overlay {
        padding: 15px 10px;
        margin: 0 5px;
        max-width: 95%;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
    }
    
    .slide-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .slider-nav {
        padding: 0 10px;
    }
    
    .slider-nav .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-indicators {
        bottom: 10px;
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .header-top .container {
        padding: 5px 10px;
    }
    
    .logo-img {
        max-height: 100px;
    }
    
    .search-bar {
        width: 100%;
        max-width: 250px;
    }
    
    .search-input {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .nav-list {
        gap: 5px;
    }
    
    .nav-link {
        padding: 8px 10px;
        font-size: 14px;
    }
}

/* Sub-Product Page Styles */
.product-image-section {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

@media (max-width: 768px) {
    .product-image-section {
        margin-bottom: 30px;
    }
    
    .product-main-image {
        max-width: 100%;
        height: auto;
    }
    
    .product-info-section {
        margin-bottom: 30px;
        width: 100%;
    }
    
    .price-table {
        overflow-x: auto;
        width: 100%;
    }
    
    .price-table table {
        min-width: 300px;
    }
    
    .order-form {
        width: 100%;
        box-sizing: border-box;
    }
    
    .order-form .form-group {
        width: 100%;
    }
    
    .order-form select,
    .order-form input,
    .order-form textarea {
        width: 100%;
        box-sizing: border-box;
    }
}

.product-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.product-info-section {
    margin-bottom: 40px;
}

.product-info-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.info-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.info-container p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.price-table-section {
    margin-bottom: 40px;
}

.price-table-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.price-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e1e5e9;
}

.price-table th {
    background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
    color: white;
    font-weight: 600;
}

.price-table tr:hover {
    background: #f8f9fa;
}



.order-form {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.order-form h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.order-form .form-group {
    margin-bottom: 20px;
}

.order-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.order-form select,
.order-form input,
.order-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.order-form select:focus,
.order-form input:focus,
.order-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.order-form .submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.order-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* About Page Styles */
.about-page {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #fff5f5 100%);
}

.about-hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-hero h2 {
    font-size: 24px;
    font-weight: 400;
    opacity: 0.9;
}

.about-content {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.about-content section {
    margin-bottom: 40px;
}

.about-content h3 {
    font-size: 28px;
    color: #1e3a8a;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 3px solid #dc2626;
    padding-bottom: 10px;
    display: inline-block;
}

.about-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #1e3a8a;
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-icon {
    font-size: 24px;
    min-width: 30px;
}

.suppliers-note {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-style: italic;
    margin-top: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 24px;
    min-width: 30px;
}

.commitment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #e8f5e8;
    border-radius: 10px;
    border: 2px solid #28a745;
}

.check-icon {
    color: #28a745;
    font-size: 20px;
    font-weight: bold;
    min-width: 25px;
}

.closing-section {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
    color: white;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
}

.contact-section {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #1e3a8a;
}

.brand-slogan {
    font-size: 20px;
    color: #dc2626;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 32px;
    }
    
    .about-hero h2 {
        font-size: 18px;
    }
    
    .about-content {
        padding: 30px 20px;
        width: 100%;
    }
    
    .products-grid,
    .features-grid,
    .commitment-list {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .product-item,
    .feature-item,
    .commitment-item {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #fff5f5 100%);
    min-height: 100vh;
}

.contact-hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 50px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
    color: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: slideInDown 1s ease-out;
}

.contact-hero p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
    animation: slideInUp 1s ease-out 0.3s both;
}

.hero-decoration {
    display: flex;
    justify-content: center;
    gap: 30px;
    animation: slideInUp 1s ease-out 0.6s both;
}

.decoration-icon {
    font-size: 30px;
    animation: bounce 2s infinite;
}

.decoration-icon:nth-child(2) {
    animation-delay: 0.3s;
}

.decoration-icon:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.contact-form-section,
.contact-info-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out;
}

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

.form-header,
.info-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #dc2626;
}

.form-header h2,
.info-header h2 {
    font-size: 28px;
    color: #1e3a8a;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-header p,
.info-header p {
    color: #666;
    font-size: 16px;
}

.creative-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

.input-icon {
    position: absolute;
    left: 20px;
    font-size: 18px;
    color: #1e3a8a;
    z-index: 2;
    transition: all 0.3s;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px 15px 15px 70px;
    border: 2px solid #e1e5e9;
    border-radius: 15px;
    font-size: 16px;
    font-family: inherit;
    background: #f8f9fa;
    transition: all 0.3s;
    outline: none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #1e3a8a;
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    transform: translateY(-2px);
}

.submit-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    text-align: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-radius: 15px;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.card-icon {
    font-size: 30px;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card p {
    font-size: 14px;
    opacity: 0.9;
    margin: 5px 0;
}

.quick-contact {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #1e3a8a;
}

.quick-contact h3 {
    color: #1e3a8a;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.quick-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 14px;
}

.phone-btn {
    background: linear-gradient(135deg, #dc2626 0%, #1e3a8a 100%);
    color: white;
}

.email-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
    color: white;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #1e3a8a 100%);
    color: white;
}

.quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.7); }
    to { opacity: 1; transform: scale(1); }
}

.modal-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.modal-content h3 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 24px;
}

.modal-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

.modal-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .contact-hero h1 {
        font-size: 32px;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 25px 20px;
        width: 100%;
    }
    
    .contact-card {
        width: 100%;
        box-sizing: border-box;
    }
    
    .quick-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .quick-btn {
        width: 100%;
        text-align: center;
    }
}

/* Product Page Specific Styles */
.product-table-section {
    margin-bottom: 40px;
}

.product-table {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow-x: auto;
    width: 100%;
}

.product-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 300px;
}

.product-table th,
.product-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e1e5e9;
    white-space: nowrap;
}

.product-table th {
    background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.product-table tr:hover {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .main-content .product-table-section {
        margin-bottom: 20px;
    }
    
    .main-content .product-table {
        border-radius: 10px;
        margin: 0 -10px;
        width: calc(100% + 20px);
    }
    
    .main-content .product-table th,
    .main-content .product-table td {
        padding: 8px 6px;
        font-size: 12px;
        white-space: normal;
        word-break: break-word;
    }
    
    .main-content .product-table th {
        font-size: 11px;
    }
    
    .main-content .contact-btn-table {
        padding: 4px 8px;
        font-size: 10px;
        border-radius: 12px;
    }
}

.contact-btn-table {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn-table:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Contact Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.modal-content h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.modal-content p {
    color: #666;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.modal-content strong {
    color: #dc2626;
    font-size: 1.2rem;
}

.modal-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

/* Weight Calculator Styles */
.weight-calculator {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.weight-calculator h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.calculator-form .form-group {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calculator-form label {
    min-width: 80px;
    font-weight: 500;
    color: #333;
}

.calculator-form input {
    flex: 1;
    padding: 10px;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.calculator-form input:focus {
    outline: none;
    border-color: #1e3a8a;
}

.calculator-form span {
    color: #666;
    font-size: 14px;
    min-width: 60px;
}

.calculate-btn {
    width: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.result {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: #333;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.result.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .sidebar .weight-calculator {
        padding: 15px;
        margin-top: 20px;
        border-radius: 10px;
    }
    
    .sidebar .weight-calculator h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .sidebar .calculator-form .form-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 15px;
    }
    
    .sidebar .calculator-form label {
        min-width: auto;
        font-size: 14px;
    }
    
    .sidebar .calculator-form input {
        width: 100%;
        padding: 8px;
        font-size: 14px;
    }
    
    .sidebar .calculator-form span {
        font-size: 12px;
        min-width: auto;
    }
    
    .sidebar .calculate-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .sidebar .result {
        padding: 12px;
        font-size: 14px;
    }
}

.disabled-link {
    color: #333;
    cursor: not-allowed;
    text-decoration: none;
    pointer-events: none;
    opacity: 0.8;
}

/* Not Found Page Styles */
.not-found-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 40px 20px;
}

.not-found-content {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
    margin-bottom: 40px;
}

.not-found-icon {
    font-size: 80px;
    margin-bottom: 30px;
    opacity: 0.7;
}

.not-found-content h1 {
    font-size: 36px;
    color: #dc2626;
    margin-bottom: 20px;
    font-weight: 700;
}

.not-found-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.suggestions {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: right;
}

.suggestions h3 {
    font-size: 20px;
    color: #1e3a8a;
    margin-bottom: 15px;
    font-weight: 600;
}

.suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suggestions li {
    padding: 8px 0;
    color: #555;
    font-size: 16px;
    position: relative;
    padding-right: 25px;
}

.suggestions li::before {
    content: "•";
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    right: 0;
    font-size: 18px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary {
    background: white;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.btn-secondary:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.contact-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
}

.contact-section h3 {
    font-size: 22px;
    color: #1e3a8a;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.contact-section .contact-person {
    text-align: center;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.contact-section .person-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.contact-section h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-section p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .not-found-content {
        padding: 30px 20px;
        margin: 0 10px 30px;
    }
    
    .not-found-icon {
        font-size: 60px;
    }
    
    .not-found-content h1 {
        font-size: 28px;
    }
    
    .not-found-content p {
        font-size: 16px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
    
    .contact-section {
        margin: 0 10px;
        padding: 20px;
    }
}