/* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .site-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #e5e7eb;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 18px;
            color: #1e40af;
        }

        .brand img {
            height: 50px;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-list a {
            text-decoration: none;
            color: #374151;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.2s;
        }

        .nav-list a:hover {
            background: #f3f4f6;
            color: #1e40af;
        }

        .nav-list .active a {
            color: #1e40af;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .bar {
            width: 25px;
            height: 3px;
            background: #374151;
            transition: 0.3s;
        }


        /* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.2s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0%;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 270px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #374151;
    text-decoration: none;
    transition: background-color 0.2s;
}

.dropdown-menu a:hover {
    background: #f3f4f6;
    color: #1e40af;
}

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8fafc;
        margin-top: 10px;
        border-radius: 6px;
        display: none;
    }
    
    .has-dropdown.mobile-open .dropdown-menu {
        display: block;
    }
}


        /* Hero Carousel */
        .hero-carousel {
            position: relative;
            height: 70vh;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            min-width: 100%;
            height: 70vh;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
            justify-content: left;
        }

        .slide-1 {
            background-image: linear-gradient(to right, rgba(0, 0, 30, 0.7), rgba(0, 0, 0, 0.2)), url('../images/wheel-chair-banner.jpg');
        }

        .slide-2 {
            background-image: linear-gradient(to right, rgba(0, 0, 30, 0.7), rgba(0, 0, 0, 0.2)), url('../images/medical-bed-banner.jpg');
        }

        .slide-3 {
            background-image: linear-gradient(to right, rgba(0, 0, 30, 0.7), rgba(0, 0, 0, 0.2)), url('../images/slide-3-banner.jpg');
        }

        .hero-content {
            color: white;
            width: 1200px;
        }

        .hero-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            max-width: 600px;
        }

        .hero-subtitle {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 600px;
        }

        .carousel-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: 0.3s;
        }

        .carousel-dot.active {
            background: white;
        }

        /* Buttons */
        .btn {
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            
        }

        .btn-primary {
            background: #1e40af;
            color: white;
        }

        .btn-primary:hover {
            background: #1d4ed8;
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: white;
            color: #1e40af;
            border: 2px solid #1e40af;
        }

        .btn-secondary:hover {
            background: #1e40af;
            color: white;
        }

        .btn-outline {
            background: transparent;
            color: #1e40af;
            border: 2px solid #1e40af;
        }

        .btn-outline:hover {
            background: #1e40af;
            color: white;
        }

        /* Trust Bar */
        .trust-bar {
            background: #4561c7;
            border-bottom: 1px solid #e5e7eb;
            padding: 20px 0;
        }

        .trust-items {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            color: #fff;
        }

        .trust-item svg {
            color: #1e40af;
            padding: 4px;
            border-radius: 50%;
            background-color: #fff;
        }

        /* Featured Products */
        .featured-products {
            padding: 60px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1f2937;
        }

        .section-header p {
            font-size: 18px;
            color: #6b7280;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .product-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
        }

        .product-card .btn{
            display: block;
            text-align: center;
        }

        .product-image {
            width: 100%;
            object-fit: cover;
        }

        .product-body {
            padding: 20px;
        }

        .product-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1f2937;
        }

        .product-price {
            font-size: 24px;
            font-weight: 700;
            color: #1e40af;
        }

        .price-before-discount {
            font-size: 20px;
            font-weight: 400;
            color: #999;
            text-decoration: line-through;
            margin-bottom: 15px;
        }
        .view-all-container {
            text-align: center;
        }

        /* How it works */
        .how-it-works {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.2rem;
        }

        .step {
            background: white;
            padding: 1.2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            display: flex;
            gap: 1.2rem;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: #1e40af;
            color: white;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            flex: 0 0 auto;
            display: grid;
            place-items: center;
        }

        .step-body {
            text-align: left;
        }

        .step h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1f2937;
        }

        .step p {
            color: #6b7280;
        }

        /* Contact CTA */
        .contact-cta {
            padding: 60px 0;
        }

        .contact-inner {
            display: flex;
            align-items: center;
            gap: 1.8rem;
            background-image: 
                url('../images/section-bg.jpg');
            background-size: cover;
            background-position: center;
            padding: 1.2rem 1.8rem;
            border-radius: 16px;
            border: 1px solid #eaeef7;
        }

        .contact-illustration {
            flex: 0 0 120px;
        }

        .contact-illustration img {
            width: 100px;
        }

        .contact-content {
            flex: 1;
        }

        .contact-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1f2937;
        }

        .contact-info {
            display: flex;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #1f2937;
            font-weight: 500;
        }

        .contact-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }


        /* Page Hero */
        .page-hero {
            background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/about-us-banner.jpg');
            color: white;
            padding: 40px 0 60px;
            text-align: center;
        }

        .page-hero h1 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 120%;
        }

        .page-hero p {
            font-size: 16px;
            max-width: 800px;
            margin: 0 auto;
        }

        .page-hero .tagline {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #38ff95;
            text-transform: uppercase;
        }

        /* About Intro */
        .about-intro {
            padding: 80px 0;
            background: white;
        }

        .intro-content {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 60px;
            align-items: center;
        }

        .intro-text h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #1f2937;
        }

        .intro-text p {
            font-size: 18px;
            margin-bottom: 20px;
            color: #6b7280;
        }

        .intro-image {
            text-align: center;
        }

        .intro-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
        }

        /* Product Range */
        .product-range {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1f2937;
        }

        .section-header p {
            font-size: 18px;
            color: #6b7280;
        }

        .product-categories {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .category-card {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
        }

        .category-icon {
            width: 60px;
            height: 60px;
            background: #e0f2fe;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .category-icon img{
            width: 40px;
            height: 40px;
        }

        .category-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1f2937;
        }

        .category-card p {
            color: #6b7280;
        }

        /* Mission Vision */
        .mission-vision {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .mv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 24px;
        }

        .mv-card {
            text-align: center;
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .mv-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .mv-icon img{
            width: 40px;
            height: 40px;
        }

        .mv-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1f2937;
        }

        .mv-card p {
            font-size: 16px;
            color: #6b7280;
            text-align: left;
        }

        /* Our Story */
        .our-story {
            padding: 60px 0;
            /* background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);*/
        }

        .story-content {
            margin: 0 auto;
            text-align: center;
        }

        .story-content h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #1f2937;
        }

        .story-content p {
            font-size: 18px;
            margin-bottom: 25px;
            color: #6b7280;
            text-align: left;
        }

        /* Commitment */
        .commitment {
            padding: 60px 0;
            background: white;
        }

        .commitment-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-top: 30px;
        }

        .commitment-item {
            display: flex;
            gap: 20px;
            padding: 30px 20px;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
            transition: all 0.3s;
        }

        .commitment-icon {
            flex: 0 0 50px;
            height: 50px;
            background: #e0f2fe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .commitment-content h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1f2937;
        }

        .commitment-content p {
            font-size: 14px;
            color: #6b7280;
        }

        /* About Contact CTA */
        .about-contact-cta {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            text-align: center;
        }

        .about-contact-cta .cta-buttons{
            display: flex;
            justify-content: center;
            gap: 24px;
        }

        .about-contact-cta h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .about-contact-cta p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }


        /* Page Header */
        .page-header {
            background-image: url('../images/products-header-bg.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        .page-header h1 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .page-header p {
            font-size: 18px;
            opacity: 0.9;
        }

        /* Main Content */
        .products-main {
            padding: 40px 0;

        }

        .products-layout {
            display: grid;
            grid-template-columns: 270px 1fr;
            gap: 30px;
        }

        /* Category Panel */
        .category-panel {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 0;
            height: 100%;
        }

        .category-panel h3 {
            padding: 20px;
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            color: #1f2937;
            border-bottom: 1px solid #e5e7eb;
        }

        .category-list {
            list-style: none;
            padding: 0;
        }

        .category-list li {
            border-bottom: 1px solid #f3f4f6;
        }

        .category-list li:last-child {
            border-bottom: none;
        }

        .category-list .category-btn {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 16px 20px;
            font-size: 15px;
            font-weight: 500;
            color: #6b7280;
            cursor: pointer;
            transition: all 0.2s;
            display: block;
            text-decoration: none;
        }

        .category-list .category-btn:hover {
            background: #f8fafc;
            color: #1e40af;
        }

        .category-list .category-btn.active {
            background: #eff6ff;
            color: #1e40af;
            border-right: 3px solid #1e40af;
        }

        /* Mobile Category Dropdown */
        .mobile-category-dropdown {
            display: none;
            background: white;
            border-radius: 8px;
            border: 1px solid #e5e7eb;
            padding: 12px 16px;
            font-size: 16px;
            width: 100%;
            margin-bottom: 20px;
            cursor: pointer;
        }

        /* Content Area */
        .content-area {
        }

        .category-header {
            margin-bottom: 30px;
        }

        .category-title {
            font-size: 28px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 8px;
        }

        .subcategory-title {
            font-size: 18px;
            color: #6b7280;
            font-weight: 500;
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .coming-soon{
            text-align: center;
        }

        .coming-soon img{
            width: 250px;
        }

        .product-list-card {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .product-list-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
        }


        .product-info .btn-secondary{
            display: flex; /* Enables Flexbox layout */
              align-items: center; /* Vertically centers content */
              gap: 4px;
              padding: 8px 24px;
        }

        .product-name {
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 15px;
        }

        .product-actions {
            display: flex;
            flex-grow: 1;
            gap: 8px;
        }


        /* Breadcrumb */
        .breadcrumb {
            background-image: url('../images/products-header-bg.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 20px 0;
            border-bottom: 1px solid #e5e7eb;
        }

        .breadcrumb nav {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

        .breadcrumb a {
            text-decoration: none;
            transition: color 0.2s;
            opacity: .9;
            color: white;
        }

        .breadcrumb a:hover {
            opacity: 1;
        }

        .breadcrumb-separator {
            opacity: .9;
        }

        .breadcrumb-current {
            font-weight: 500;
        }

        /* Product Details */
        .product-details {
            padding: 40px 0;
        }

        .product-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        /* Product Images */
        .product-images {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .main-image {
            width: 100%;
            height: 400px;
            border-radius: 12px;
            text-align: center;
            overflow: hidden;
            border: 1px solid #e5e7eb;
        }

        .main-image img {
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .main-image:hover img {
            transform: scale(1.05);
        }

        .thumbnail-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .thumbnail {
            width: 100%;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid #e5e7eb;
            cursor: pointer;
            transition: all 0.2s;
            text-align: center;
        }

        .thumbnail:hover,
        .thumbnail.active {
            border-color: #1e40af;
        }

        .thumbnail img {
            height: 100%;
            object-fit: cover;
        }

        /* Product Info */
        .product-info {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .product-name {
            font-size: 32px;
            font-weight: 700;
            color: #1f2937;
            line-height: 1.2;
        }

     

        .product-actions {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }


        .need-assistance {
            border-top: 1px solid #e5e7eb;
            padding-top: 25px;
        }

        .need-assistance h3 {
            font-size: 18px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 15px;
        }

        .assistance-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        /* Specifications */
        .specifications {
        }

        .specifications h2 {
            font-size: 24px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 30px;
        }

        .spec-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 15px;
        }

        .spec-table tr{
            background: #f8fafc;
        }

        .spec-table tr:nth-child(odd){
            background: #fff;
        }

        .spec-table th,
        .spec-table td {
            text-align: left;
            padding: 12px 20px;
            border-bottom: 1px solid #e5e7eb;
        }

        .spec-table th {
            font-weight: 600;
            color: #374151;
            width: 35%;
        }

        .spec-table td {
            color: #6b7280;
        }

        .spec-table tr:last-child th,
        .spec-table tr:last-child td {
            border-bottom: none;
        }

        

        
        /* Order Panel */
        .order-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            display: none;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .order-overlay.active {
            display: block;
            opacity: 1;
        }

        .order-panel {
            position: fixed;
            top: 0;
            right: -500px;
            width: 100%;
            max-width: 500px;
            height: 100vh;
            background: white;
            z-index: 2001;
            overflow-y: auto;
            transition: right 0.3s ease;
            box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        }

        .order-panel.active {
            right: 0;
        }

        .order-panel-header {
            padding: 20px 25px;
            background: #1e40af;
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .order-panel-title {
            font-size: 20px;
            font-weight: 600;
        }

        .close-panel {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: background 0.2s;
        }

        .close-panel:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .order-panel-content {
            padding: 30px 25px;
        }

        .product-summary {
            background: #f8fafc;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            border: 1px solid #e5e7eb;
        }

        .product-summary h3 {
            font-size: 18px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 5px;
        }

        .product-summary p {
            color: #6b7280;
            font-size: 14px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-weight: 500;
            color: #374151;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .form-label .required {
            color: #dc2626;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
            transition: all 0.2s;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #1e40af;
            box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
        }

        .form-input.error,
        .form-textarea.error {
            border-color: #dc2626;
        }

        .form-input.error:focus,
        .form-textarea.error:focus {
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
        }

        .error-message {
            font-size: 13px;
            color: #dc2626;
            margin-top: 5px;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        .form-textarea {
            resize: vertical;
            min-height: 80px;
        }

        .form-hint {
            font-size: 13px;
            color: #6b7280;
            margin-top: 5px;
        }


        .contact-form-wrapper {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .contact-form-wrapper h2 {
            font-size: 28px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 10px;
        }

        .form-intro {
            color: #6b7280;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-weight: 500;
            color: #374151;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .form-label .required {
            color: #dc2626;
        }


        

        .quantity-input {
            display: flex;
            align-items: center;
            gap: 10px;
            max-width: 150px;
        }

        .quantity-btn {
            width: 40px;
            height: 40px;
            border: 1px solid #d1d5db;
            background: white;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 600;
            color: #374151;
            transition: all 0.2s;
        }

        .quantity-btn:hover {
            background: #f3f4f6;
            border-color: #1e40af;
            color: #1e40af;
        }

        .quantity-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .quantity-value {
            flex: 1;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
        }

        .order-actions {
            display: flex;
            gap: 12px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e5e7eb;
        }

        .btn-full {
            width: 100%;
        }

        .success-message {
            background: #dcfce7;
            border: 1px solid #86efac;
            color: #166534;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: none;
        }

        .success-message.show {
            display: block;
        }

        .btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }





        /* Contact Section */
        .contact-section {
            padding: 40px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        /* Contact Info */
        .contact-page-info {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .contact-page-info h2 {
            font-size: 28px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 20px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px;
            background: #f8fafc;
            border-radius: 8px;
        }

        .info-icon {
            width: 40px;
            height: 40px;
            background: #e0f2fe;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-content h3 {
            font-size: 14px;
            font-weight: 600;
            color: #6b7280;
            margin-bottom: 5px;
        }

        .info-content p {
            font-size: 16px;
            color: #1f2937;
            font-weight: 500;
        }

        .info-content a {
            color: #1e40af;
            text-decoration: none;
        }

        .info-content a:hover {
            text-decoration: underline;
        }

        .expansion-note {
            background: #eff6ff;
            border-left: 4px solid #1e40af;
            padding: 15px;
            margin: 25px 0;
            border-radius: 4px;
            font-size: 14px;
            color: #1f2937;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: #1e40af;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.2s;
        }

        .social-link:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
        }


      



        /* Footer */
        .site-footer {
            background: #4561c7;
            color: #d6d8ff;
            padding: 40px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            color: white;
        }

        .footer-col p {
            font-size: 14px;
            font-weight: 400;
        }

        .footer-col img {
            height: 48px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 8px;
            display: flex;
            gap: 1.2rem;
        }

        .footer-col ul li span{
            width:100%;
            font-size: 14px;
        }


        .footer-col a {
            color: #d6d8ff;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-col a:hover {
            color: white;
        }

        .footer-col .socials {
            display: flex;
            gap: 1.4rem;
            margin-top: .6rem;
            padding-top: .6rem;
            border-top: solid 1px #3c83f5 ;
        }

        .footer-bottom {
            border-top: 1px solid #3c83f5;
            padding-top: 20px;
            text-align: center;
            color: #d6d8ff;
        }

        /* Mobile Responsive */


        @media (max-width: 1024px) {
            .product-categories {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .product-categories {
                grid-template-columns: 1fr;
            }
        }


        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .breadcrumb nav {
                flex-wrap: wrap;
            }

            .thumbnail-list {
                grid-template-columns: repeat(3, 1fr);
            }

            .order-panel {
                max-width: 100%;
            }

            .order-panel-content {
                padding: 25px 20px;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: flex;
            }

            .nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                border-top: 1px solid #e5e7eb;
                display: none;
            }

            .nav.open {
                display: block;
            }

            .nav-list {
                flex-direction: column;
                padding: 20px;
                gap: 10px;
            }

            .hero-title {
                font-size: 32px;
            }

            .trust-items {
                grid-template-columns: 1fr;
                text-align: left;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            


            .steps {
                grid-template-columns: 1fr;
            }

            .contact-inner {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .contact-page-info {
                justify-content: center;
            }

            .contact-actions {
                justify-content: center;
            }

            .product-layout {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 25px;
            }


            .main-image {
                height: 300px;
            }

            .thumbnail-list {
                grid-template-columns: repeat(4, 1fr);
                gap: 8px;
            }

            .thumbnail {
                height: 60px;
            }

            .assistance-actions {
                flex-direction: column;
            }

            .specifications {
                padding: 25px;
            }

            .spec-table th,
            .spec-table td {
                padding: 12px 15px;
                font-size: 14px;
            }

            .spec-table th {
                width: 40%;
            }


        }
