/* 
   Shopino - PROFESSIONAL MANUFACTURING
   Design System 3.0: Clean Corporate
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;600&display=swap');

/* ------------------------------------------------------------
   1. VARIABLES & THEME (PROFESSIONAL LIGHT)
------------------------------------------------------------ */
:root {
    /* Colors */
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-panel: #ffffff;

    --color-primary: #0f172a;
    /* Deep Navy */
    --color-primary-dark: #020617;
    /* Darker Navy for Top Bar */
    --color-secondary: #f97316;
    /* Shopino Orange */
    /* Deep Navy - Professional */
    --color-secondary: #f97316;
    /* Shopino Orange (Brand) */
    --color-accent-kitchen: #14b8a6;
    /* Kitchen Teal */

    --color-text-main: #334155;
    --color-text-heading: #1e293b;
    --color-text-muted: #64748b;
    --color-border: #e2e8f0;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --header-height: 90px;

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
}

/* ------------------------------------------------------------
   2. RESET & BASE
------------------------------------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    /* color: var(--color-text-heading); */
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    max-width: 100%;
    display: block;
}

/* ------------------------------------------------------------
   3. UTILITIES & COMPONENTS
------------------------------------------------------------ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: #1e293b;
    /* Slightly lighter navy */
}

.btn-toys {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
}

.btn-toys:hover {
    background: #ea580c;
    border-color: #ea580c;
}

.btn-kitchen {
    background: var(--color-accent-kitchen);
    border-color: var(--color-accent-kitchen);
    color: white;
}

.btn-kitchen:hover {
    background: #0d9488;
    border-color: #0d9488;
}

/* ------------------------------------------------------------
   4. TRIPLE-LAYER HEADER (CORPORATE STANDARD)
------------------------------------------------------------ */

/* Wrapper to hold it all */
.site-header-wrapper {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    top: 0;
    z-index: 1000;
}

/* 1. Top Bar */
.header-top-bar {
    background: #0f172a;
    /* Deep Navy */
    color: #cbd5e1;
    padding: 8px 0;
    font-size: 0.85rem;
}

.header-top-bar a {
    color: #fff;
    margin-left: 15px;
}

.header-top-bar span {
    margin-right: 20px;
}

.header-top-bar i {
    margin-right: 6px;
    color: var(--color-secondary);
}

/* 2. Main Header (Logo & Search) */
.header-main {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.brand-logo img {
    height: 75px;
    width: auto;
}

/* Search Bar */
.header-search form {
    display: flex;
    width: 400px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.header-search input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
}

.header-search button {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 0 20px;
    cursor: pointer;
}

/* 3. Navigation Bar */
.header-nav {
    background: var(--color-secondary);
    /* Shopino Orange */
}

.main-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li a {
    display: block;
    padding: 15px 30px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.main-menu li a:hover {
    background: rgba(0, 0, 0, 0.1);
    /* Subtle darken */
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .site-header-wrapper {
        position: relative;
        /* Unstick on mobile if preferred, or keep sticky */
    }

    /* Center logo on mobile */
    .header-main .container {
        justify-content: center;
    }

    .brand-logo img {
        height: 60px;
    }

    /* Stack the Menu vertically */
    .header-nav {
        background: #fff;
        /* Switch to white for cleaner list on mobile? Or keep orange? User specifically wanted "Normal" */
        border-bottom: 1px solid #ddd;
    }

    .main-menu {
        flex-direction: column;
    }

    .main-menu li a {
        color: var(--color-primary);
        /* Dark text on white */
        border-bottom: 1px solid #f1f5f9;
        padding: 12px 0;
        text-align: center;
        font-size: 0.9rem;
    }

    .main-menu li:last-child a {
        border-bottom: none;
    }

    .hidden-mobile {
        display: none !important;
    }
}

/* ------------------------------------------------------------
   5. HERO SECTION (CLEAN)
------------------------------------------------------------ */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)),
        url('https://images.unsplash.com/photo-1596461404969-9ae70f2830c1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

/* ------------------------------------------------------------
   6. SECTIONS
------------------------------------------------------------ */
.section {
    padding: var(--spacing-lg) 0;
}

.bg-light {
    background-color: var(--color-bg-alt);
}

/* Split Category */
.split-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 600px;
}

.category-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}

.category-card:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.category-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text-main);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
}

.category-content h2 {
    color: var(--color-primary);
}

.cat-toys {
    background-image: url('https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.cat-kitchen {
    background-image: url('https://images.unsplash.com/photo-1556910103-1c02745a30bf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-item {
    background: #fff;
    padding: 2rem;
    text-align: center;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.trust-item i {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

/* ------------------------------------------------------------
   7. PRODUCTS GRID
------------------------------------------------------------ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card-wrapper {
    background: #fff;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.product-card-wrapper:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-img {
    height: 250px;
    width: 100%;
    object-fit: contain;
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-title {
    font-size: 1.1rem;
    color: var(--color-primary);
}

.product-meta {
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ------------------------------------------------------------
   8. MANUFACTURING GRID (Clean Specs)
------------------------------------------------------------ */
.machine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.machine-card {
    background: #fff;
    border: 1px solid var(--color-border);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    transition: 0.3s;
    box-shadow: var(--shadow-sm);
}

.machine-card:hover {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-md);
}

.machine-card h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 0.5rem;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.tech-badge {
    padding: 0.6rem 1.2rem;
    background: #fff;
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.tech-badge:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ------------------------------------------------------------
   8. PREMIUM PRODUCT SHOWROOM
------------------------------------------------------------ */
.products-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    padding: 4rem 0;
    margin-bottom: 3rem;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.products-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.products-hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.products-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

/* Sidebar Styles */
.filters-sidebar {
    background: #fff;
    padding: 0;
}

.filter-group {
    margin-bottom: 2.5rem;
}

.filter-group h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #94a3b8;
    /* Muted label */
    margin-bottom: 1rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 10px 15px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-primary);
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid transparent;
}

.filter-btn:hover {
    background: #f1f5f9;
    color: var(--color-secondary);
}

.filter-btn.active {
    background: #fff;
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
}

/* Premium Card Styles */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card-premium {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    /* Lift effect setup */
}

.product-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: transparent;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-image-wrapper {
    height: 300px;
    /* Taller images */
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-wrapper img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card-premium:hover .card-image-wrapper img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: var(--color-primary);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-details {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    margin-bottom: 1rem;
    flex: 1;
}

.card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.card-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-secondary);
}

.card-action {
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

.action-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.2s;
}

.product-card-premium:hover .action-text {
    color: var(--color-secondary);
}

.action-text i {
    transform: translateX(0);
    transition: 0.2s;
}

.product-card-premium:hover .action-text i {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .products-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        overflow-x: auto;
        white-space: nowrap;
        display: flex;
        gap: 20px;
        padding-bottom: 15px;
        margin-bottom: 20px;
        border-bottom: 1px solid #f1f5f9;
    }

    .filter-group {
        margin-bottom: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .filter-group h3 {
        display: none;
        /* Hide headings on mobile scroll */
    }

    .filter-btn {
        width: auto;
        white-space: nowrap;
        background: #f1f5f9;
        border-radius: 50px;
        padding: 8px 16px;
    }

    .filter-btn.active {
        background: var(--color-primary);
        color: #fff;
    }
}

/* ------------------------------------------------------------
   9. FORMS & FOOTER
------------------------------------------------------------ */
/* ------------------------------------------------------------
   9. FORMS & MEGA FOOTER
------------------------------------------------------------ */
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

/* Mega Footer Wrapper */
.footer-mega {
    color: #cbd5e1;
    font-family: var(--font-body);
}

/* 1. Newsletter Strip */
.footer-newsletter {
    background: #1e293b;
    /* Slightly lighter navy */
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-text h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.newsletter-text i {
    color: var(--color-secondary);
    margin-right: 10px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    outline: none;
}

/* 2. Main Widgets */
.footer-widgets {
    background: #0f172a;
    /* Deep Navy */
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    /* Uneven columns for better layout */
    gap: 3rem;
}

.footer-logo {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.footer-logo span {
    color: var(--color-secondary);
}

.brand-col p {
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #94a3b8;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

/* Contact List in Footer */
.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}

.footer-contact-list i {
    color: var(--color-secondary);
    margin-top: 5px;
}

/* 3. Bottom Bar */
.footer-bottom {
    background: #020617;
    /* Black/Navy */
    padding: 1.5rem 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-links a {
    color: #64748b;
    margin-left: 20px;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-bottom-links span {
    margin-left: 20px;
    color: #22c55e;
    /* Secure Green */
}

/* Mobile Footer */
@media (max-width: 900px) {
    .wrap-mobile {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        /* Stack everything */
        gap: 2rem;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-social,
    .footer-contact-list li {
        justify-content: center;
        /* Center icons */
    }
}

/* ------------------------------------------------------------
   7. PREMIUM ABOUT PAGE
------------------------------------------------------------ */
.page-hero-premium {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    padding: 5rem 0;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.page-hero-premium::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.page-hero-premium h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.about-img-premium {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
    /* Premium float */
    transform: rotate(1deg);
    border: 4px solid #fff;
}

.section-badge {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
}

/* Capability Cards (Replaces old machine-grid) */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.capability-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s ease;
}

.capability-card:hover::before {
    transform: scaleX(1);
}

.cap-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    background: #f1f5f9;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: 0.3s;
}

.capability-card:hover .cap-icon {
    background: var(--color-primary);
    color: #fff;
}

.capability-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--color-primary);
}

.capability-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Dark Tech Section */
.dark-section {
    background: #0f172a;
    padding: 5rem 0;
    color: #fff;
}

.tech-fusion-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.tech-connector {
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.tech-result {
    background: var(--color-secondary);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

@media (max-width: 900px) {
    .page-hero-premium h1 {
        font-size: 2rem;
    }

    .about-content-split {
        flex-direction: column;
    }

    .about-img-premium {
        transform: none;
        margin-top: 2rem;
    }

    .tech-fusion-container {
        flex-direction: column;
        gap: 1rem;
    }

    .tech-connector {
        transform: rotate(90deg);
    }
}

/* ------------------------------------------------------------
   10. PREMIUM CONTACT PAGE
------------------------------------------------------------ */
.contact-hero {
    height: 450px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding-bottom: 100px;
    /* Space for overlap */
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-overlap-container {
    max-width: 1200px;
    margin: -100px auto 4rem auto;
    /* Negative margin to pull up */
    padding: 0 2rem;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

/* Floating Info Panel (Left) */
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: 0.3s transform ease;
}

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

.contact-icon {
    background: var(--color-bg-alt);
    color: var(--color-secondary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card h4 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.contact-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Modern Form Panel (Right) */
.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text-heading);
    font-size: 0.9rem;
}

.form-control:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    outline: none;
}

/* Map Section */
.map-section {
    height: 400px;
    width: 100%;
    filter: grayscale(100%);
    /* corporate look */
}

/* Mobile overrides cleaned up */
@media (max-width: 900px) {
    .contact-overlap-container {
        grid-template-columns: 1fr;
        margin-top: -50px;
    }

    .contact-hero {
        height: 350px;
    }

    .nav-toggle {
        display: none !important;
        /* Force hide hamburger */
    }

    .nav-links {
        display: flex !important;
        /* Force show links */
        position: static;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
        padding: 5px 0;
        margin-top: 5px;
        background: transparent;
        box-shadow: none;
        border: none;
        width: 100%;
        overflow-x: auto;
        /* Allow scrolling if tight */
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .nav-link {
        font-size: 0.75rem;
        /* Smaller text for mobile */
        padding: 5px;
        color: var(--color-primary);
    }

    .header {
        height: auto;
        padding-bottom: 5px;
    }

    .container.flex-between {
        flex-direction: column;
        /* Stack Logo and Nav */
        gap: 0;
    }
}

.nav-toggle {
    display: block;
}

.nav-links {
    display: none;
    /* JS will toggle this */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid #e2e8f0;
    z-index: 9999;
    /* Force to front */
}

.nav-links.active {
    display: flex;
}

.split-category {
    grid-template-columns: 1fr;
    height: auto;
}

.category-card {
    height: 400px;
}

/* =========================================
   Distributors / B2B Page Styles
   ========================================= */

/* Hero Section */
.b2b-hero {
    position: relative;
    padding: 160px 0 100px;
    /* Taller for impact */
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.b2b-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://www.shopperspk.com/wp-content/uploads/2021/02/Ikea-RASKOG-Utility-Cart-Black-247x247.jpg');
    /* Placeholder texture/image */
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    mix-blend-mode: overlay;
    z-index: 1;
}

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

.b2b-hero .hero-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-accent);
}

.b2b-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.b2b-hero .highlight {
    color: var(--color-secondary);
}

.b2b-hero .hero-lead {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--color-bg-dark);
    border-color: #fff;
}

/* Benefits Grid */
.b2b-pitch {
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.benefit-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.1);
    /* Primary color fade */
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-heading);
}

.benefit-card p {
    color: var(--color-text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Showcase Section */
.b2b-showcase {
    padding: 80px 0;
}

.showcase-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    /* Dark section text */
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: var(--color-accent);
    margin-right: 1rem;
    font-size: 1.25rem;
}

.showcase-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-img {
    width: 100%;
    display: block;
    transform: scale(1.05);
    /* Slight zoom for impact */
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text-heading);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.floating-badge i {
    color: var(--color-primary);
}

/* CTA Section */
.b2b-cta {
    padding: 100px 0;
    background: #fff;
}

.cta-box {
    background: var(--color-bg-dark);
    border-radius: 24px;
    padding: 4rem;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
}

.b2b-form {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
}

.form-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}

.direct-contact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.contact-item small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Mobile Responsiveness for B2B Page */
@media (max-width: 768px) {
    .b2b-hero {
        padding: 120px 0 60px;
    }

    .b2b-hero h1 {
        font-size: 2.5rem;
    }

    .hero-cta-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }

    .form-row {
        flex-direction: column;
    }

    .direct-contact {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .cta-box {
        padding: 2rem;
    }
}