/* ==========================================================================
   INFINITE Oman - Creative & Modern Style Sheet
   All custom classes prefixed with 'needkitchenweb-'
   Design Theme: White, Red (#E31B23), Black/Matte Black (#121212)
   Font: Poppins
   Inspired by clean, premium B2B SaaS and high-end agency designs.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --needkitchenweb-brand-red: #E31B23;
    --needkitchenweb-brand-red-hover: #b81218;
    --needkitchenweb-brand-red-light: rgba(227, 27, 35, 0.08);
    --needkitchenweb-matte-black: #121212;
    --needkitchenweb-deep-charcoal: #1C1C1C;
    --needkitchenweb-soft-gray: #F6F6F8;
    --needkitchenweb-border-gray: #E8E8E8;
    --needkitchenweb-text-dark: #121212;
    --needkitchenweb-text-light: #F9F9F9;
    --needkitchenweb-text-muted: #8E8E93;
    --needkitchenweb-transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --needkitchenweb-transition-elastic: all 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    --needkitchenweb-ticker-speed: 25s;

    /* Products Page Variables */
    --inf-red: #E31B23;
    --inf-dark: #121212;
    --inf-gray: #1C1C1C;
    --inf-light: #F6F6F8;
    --inf-border: #E8E8E8;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--needkitchenweb-text-dark);
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.needkitchenweb-text-red {
    color: var(--needkitchenweb-brand-red) !important;
}

.needkitchenweb-bg-red {
    background-color: var(--needkitchenweb-brand-red) !important;
}

.needkitchenweb-bg-matte-black {
    background-color: var(--needkitchenweb-matte-black) !important;
}

.needkitchenweb-bg-charcoal {
    background-color: var(--needkitchenweb-deep-charcoal) !important;
}

/* ==========================================================================
   Header & Navbar Styling (Glassmorphic)
   ========================================================================== */
.needkitchenweb-navbar {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    transition: var(--needkitchenweb-transition-smooth);
    z-index: 1000;
}

.needkitchenweb-navbar.needkitchenweb-scrolled {
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: rgb(255 255 255 / 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.needkitchenweb-navbar-brand {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 1.5px;
    color: #FFFFFF !important;
    display: flex;
    align-items: center;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-navbar.needkitchenweb-scrolled .needkitchenweb-navbar-brand {
    color: var(--needkitchenweb-matte-black) !important;
}

.needkitchenweb-brand-text {
    color: #FFFFFF !important;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-navbar.needkitchenweb-scrolled .needkitchenweb-brand-text {
    color: var(--needkitchenweb-matte-black) !important;
}

.needkitchenweb-brand-subtext {
    font-size: 8px !important;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6) !important;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-navbar.needkitchenweb-scrolled .needkitchenweb-brand-subtext {
    color: var(--needkitchenweb-text-muted) !important;
}

/* Handle the logo SVG color change */
.needkitchenweb-navbar svg.needkitchenweb-brand-logo-img path {
    stroke: #FFFFFF !important;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-navbar.needkitchenweb-scrolled svg.needkitchenweb-brand-logo-img path {
    stroke: #121212 !important;
}

.needkitchenweb-navbar.needkitchenweb-scrolled svg.needkitchenweb-brand-logo-img path[stroke="#E31B23"] {
    stroke: #E31B23 !important;
}
.needkitchenweb-navbar svg.needkitchenweb-brand-logo-img path[stroke="#E31B23"] {
    stroke: #E31B23 !important;
}

.needkitchenweb-brand-logo-img {
    height: 42px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-brand-logo-white {
    display: block;
}

.needkitchenweb-brand-logo-dark {
    display: none;
}

.needkitchenweb-navbar.needkitchenweb-scrolled .needkitchenweb-brand-logo-white {
    display: none;
}

.needkitchenweb-navbar.needkitchenweb-scrolled .needkitchenweb-brand-logo-dark {
    display: block;
}

.needkitchenweb-nav-link {
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 10px 15px !important;
    position: relative;
    transition: var(--needkitchenweb-transition-smooth);
    letter-spacing: 0.5px;
}

.needkitchenweb-navbar.needkitchenweb-scrolled .needkitchenweb-nav-link {
    color: var(--needkitchenweb-matte-black) !important;
}

.needkitchenweb-nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    width: 0;
    height: 2px;
    background-color: var(--needkitchenweb-brand-red);
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-nav-link.dropdown-toggle::after {
     display: block;
     margin-left: 0;
     vertical-align: 0;
     content: "";
     border-top: 0;
     border-right: 0;
     border-bottom: 0;
     border-left: 0em solid transparent;
}

.needkitchenweb-nav-link:hover::after,
.needkitchenweb-nav-link.active::after {
    width: calc(100% - 30px);
}

.needkitchenweb-nav-link:hover {
    color: #FFFFFF !important;
}

.needkitchenweb-navbar.needkitchenweb-scrolled .needkitchenweb-nav-link:hover {
    color: var(--needkitchenweb-brand-red) !important;
}

/* Dropdown Custom Styles */
.needkitchenweb-dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background-color: #FFFFFF;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--needkitchenweb-transition-smooth);
    display: block;
}

@media (min-width: 992px) {
    .needkitchenweb-dropdown:hover .needkitchenweb-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.needkitchenweb-dropdown-item {
    font-weight: 500;
    font-size: 13px;
    padding: 10px 24px;
    color: var(--needkitchenweb-matte-black);
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-dropdown-item:hover {
    background-color: var(--needkitchenweb-brand-red-light);
    color: var(--needkitchenweb-brand-red);
    padding-left: 30px;
}

/* Mobile Toggler */
.needkitchenweb-navbar-toggler {
    border: none;
    outline: none !important;
}

.needkitchenweb-navbar-toggler-icon {
    width: 24px;
    height: 2px;
    background-color: #FFFFFF;
    display: block;
    position: relative;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-navbar.needkitchenweb-scrolled .needkitchenweb-navbar-toggler-icon {
    background-color: var(--needkitchenweb-matte-black);
}

.needkitchenweb-navbar-toggler-icon::before,
.needkitchenweb-navbar-toggler-icon::after {
    content: '';
    width: 24px;
    height: 2px;
    background-color: #FFFFFF;
    position: absolute;
    left: 0;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-navbar.needkitchenweb-scrolled .needkitchenweb-navbar-toggler-icon::before,
.needkitchenweb-navbar.needkitchenweb-scrolled .needkitchenweb-navbar-toggler-icon::after {
    background-color: var(--needkitchenweb-matte-black);
}

.needkitchenweb-navbar-toggler-icon::before { top: -6px; }
.needkitchenweb-navbar-toggler-icon::after { top: 6px; }

.needkitchenweb-navbar-toggler[aria-expanded="true"] .needkitchenweb-navbar-toggler-icon {
    background-color: transparent;
}

.needkitchenweb-navbar-toggler[aria-expanded="true"] .needkitchenweb-navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.needkitchenweb-navbar-toggler[aria-expanded="true"] .needkitchenweb-navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ==========================================================================
   Section 1: Hero Banner (Rounded & Framed Layout)
   ========================================================================== */
.needkitchenweb-hero-frame-container {
    padding: 0; /* Full bleed layouts */
    background-color: #FFFFFF;
}

.needkitchenweb-hero-wrapper {
    position: relative;
    height: 100vh;
    min-height: 650px;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;  /* push content to bottom like zero-space */
    justify-content: flex-start;
}

.needkitchenweb-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.needkitchenweb-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.90) 0%, rgb(0 0 0 / 0%) 40%, rgba(0, 0, 0, 0.30) 70%, rgba(0, 0, 0, 0.10) 100%);
    z-index: 2;
}

.needkitchenweb-hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 20%, rgba(0,0,0,0) 55%);
    pointer-events: none;
    z-index: 3;
}

.needkitchenweb-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 48px 52px 48px;
    text-align: left;
    overflow: hidden; /* Prevent text bleed on small viewports */
}

/* ==========================================================================
   Hero â€” Zero-Space Display Typography Style
   ========================================================================== */

/* Giant display headline filling the viewport width */
.needkitchenweb-hero-display-wrap {
    margin-bottom: 6px;
    overflow: hidden;
}

/* Hero display headline â€” sized so INFINITE SOLUTIONS fits in one line */
.needkitchenweb-hero-display {
    font-size: clamp(36px, 5.8vw, 100px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    text-align: left !important;
}

/* Two display lines â€” must be block so they stack vertically */
.needkitchenweb-display-line {
    display: block !important; /* Override .needkitchenweb-word-reveal inline-block */
    text-align: left !important;
}

/* "ONE VISION" â€” light, wide-tracked, secondary */
.needkitchenweb-display-line-top {
    font-weight: 300;
    letter-spacing: 0.08em;
    font-size: 0.48em;
    color: rgba(255, 255, 255, 0.60);
    margin-bottom: 2px;
    white-space: nowrap;
}

/* "INFINITE SOLUTIONS" â€” heavy, dominant */
.needkitchenweb-display-line-bottom {
    font-weight: 900;
    letter-spacing: -0.025em;
    color: #FFFFFF;
    white-space: nowrap;
}

/* Red accent for "SOLUTIONS" */
.needkitchenweb-title-accent {
    color: var(--needkitchenweb-brand-red);
}


/* Secondary display line under the main title */
.needkitchenweb-hero-display-sub {
    font-size: clamp(28px, 4.2vw, 72px);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin: 0 0 28px 0;
    white-space: nowrap;
}

/* Secondary description directly below the main headline */
.needkitchenweb-hero-secondary-desc {
    font-size: clamp(16px, 1.4vw, 22px);
    font-weight: 600;
    line-height: 1.6;
    color: #FFFFFF;
    max-width: 850px;
    margin-top: 20px;
    margin-bottom: 30px;}

/* ---- Letter-by-Letter Cinematic Reveal ---- */
.needkitchenweb-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(80%);
    animation: needkitchenwebCharReveal 0.8s cubic-bezier(0.15, 0.85, 0.15, 1) forwards;
    animation-delay: calc(0.15s + var(--char-index) * 0.025s);
    white-space: pre; /* Ensure spaces between letters are preserved and don't collapse */
}

@keyframes needkitchenwebCharReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtitle / bottom text fade-up reveal */
.needkitchenweb-hero-subtitle-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.needkitchenweb-hero-subtitle-anim.needkitchenweb-reveal-in {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons reveal */
.needkitchenweb-hero-btns-anim {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.needkitchenweb-hero-btns-anim.needkitchenweb-reveal-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .needkitchenweb-hero-display {
        font-size: clamp(52px, 11vw, 130px);
        white-space: normal;
    }
    .needkitchenweb-hero-display-sub {
        font-size: clamp(20px, 4vw, 44px);
        white-space: normal;
        letter-spacing: 0.06em;
    }
    .needkitchenweb-hero-bottom {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .needkitchenweb-hero-content {
        padding: 0 28px 36px 28px;
    }
}

@media (max-width: 576px) {
    .needkitchenweb-hero-display {
        font-size: clamp(38px, 10vw, 80px);
    }
    .needkitchenweb-display-line-bottom {
        white-space: normal !important;
    }
    .needkitchenweb-hero-main-title-part {
        display: block !important;
    }
    .needkitchenweb-hero-display-sub {
        font-size: clamp(16px, 4vw, 28px);
        letter-spacing: 0.04em;
    }
    .needkitchenweb-hero-bottom-left p {
        font-size: 15px;
    }
}

/* Solutions Finder Glassmorphic Pill Widget */
.needkitchenweb-solutions-finder {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 950px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 10px 12px 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    z-index: 10;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-solutions-finder:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.3);
}

.needkitchenweb-finder-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 20px;
    margin-right: 20px;
}

.needkitchenweb-finder-field:last-of-type {
    border-right: none;
    margin-right: 0;
}

.needkitchenweb-finder-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--needkitchenweb-brand-red);
    margin-bottom: 4px;
}

.needkitchenweb-finder-select {
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.needkitchenweb-finder-select option {
    background-color: var(--needkitchenweb-matte-black);
    color: #FFFFFF;
}

.needkitchenweb-finder-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--needkitchenweb-brand-red);
    border: none;
    color: #FFFFFF;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--needkitchenweb-transition-elastic);
    cursor: pointer;
}

.needkitchenweb-finder-btn:hover {
    background-color: var(--needkitchenweb-brand-red-hover);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(227, 27, 35, 0.5);
}

/* Standard Buttons */
.needkitchenweb-btn {
    padding: 14px 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: var(--needkitchenweb-transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.needkitchenweb-btn-red {
    background-color: var(--needkitchenweb-brand-red);
    color: #FFFFFF;
    border: 2px solid var(--needkitchenweb-brand-red);
}

.needkitchenweb-btn-red:hover {
    background-color: var(--needkitchenweb-brand-red-hover);
    border-color: var(--needkitchenweb-brand-red-hover);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 27, 35, 0.25);
}

.needkitchenweb-btn-ghost {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.needkitchenweb-btn-ghost:hover {
    background-color: #FFFFFF;
    color: var(--needkitchenweb-matte-black);
    transform: translateY(-3px);
}

/* ==========================================================================
   Section 2: Who We Are & Credentials Stats
   ========================================================================== */
/* ==========================================================================
   Section 2: Who We Are â€” Premium Dark Redesign
   ========================================================================== */
.needkitchenweb-who-we-are {
    position: relative;
    background-color: #0d0d0d;
    padding: 110px 0 0 0;
    overflow: hidden;
}

.needkitchenweb-who-container {
    position: relative;
    z-index: 5;
}


/* Subtle diagonal grid pattern */
.needkitchenweb-blueprint-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 1;
}

/* Large red glow in top-right corner */
.needkitchenweb-blueprint-bg::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 27, 35, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Image wrapper â€” tall, full-height, right-bleed */
.needkitchenweb-who-visual-wrapper {
    position: relative;
    width: 100%;
    height: 580px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

/* Red gradient overlay on image */
.needkitchenweb-who-visual-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227, 27, 35, 0.25) 0%, rgba(0,0,0,0.35) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

.needkitchenweb-who-visual-wrapper:hover::after {
    opacity: 0.5;
}

.needkitchenweb-who-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.needkitchenweb-who-visual-wrapper:hover .needkitchenweb-who-img {
    transform: scale(1.06);
}

/* Text card â€” dark glass panel */
.needkitchenweb-overlapping-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--needkitchenweb-brand-red);
    border-radius: 16px;
    padding: 52px 48px;
    position: relative;
    z-index: 10;
    margin-right: -60px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-overlapping-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    border-left-color: var(--needkitchenweb-brand-red);
}

/* Accent tag â€” red pill */
.needkitchenweb-accent-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    color: var(--needkitchenweb-brand-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
    background: rgba(227, 27, 35, 0.12);
    border: 1px solid rgba(227, 27, 35, 0.3);
    padding: 4px 14px;
    border-radius: 100px;
}

.needkitchenweb-who-title {
    font-size: 36px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.needkitchenweb-who-body {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.65);
}

.needkitchenweb-who-body strong {
    color: #FFFFFF;
    font-weight: 700;
}

.needkitchenweb-who-read-more {
    margin-top: 12px;
}

/* ==========================================================================
   Stats Row â€” Dark, Bold, Premium
   ========================================================================== */
.needkitchenweb-stats-row {
    margin-top: 80px;
    position: relative;
    z-index: 5;
    background: var(--needkitchenweb-brand-red);
    padding: 50px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.needkitchenweb-stat-block {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
}

.needkitchenweb-stat-block:last-child {
    border-right: none;
}

.needkitchenweb-stat-number {
    font-size: 62px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.needkitchenweb-stat-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.9);
}

.needkitchenweb-stat-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
}



/* ==========================================================================
   Section 3: Sector Accordion (Full Width breakout)
   ========================================================================== */
.needkitchenweb-sectors-section {
    padding: 110px 0 0 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
    position: relative;
}

.needkitchenweb-sectors-headline-container {
    max-width: 820px;
    margin: 0 auto 56px auto;
    text-align: center;
}

.needkitchenweb-sectors-container {
    display: flex;
    width: 100vw;
    height: 620px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    background-color: var(--needkitchenweb-matte-black);
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08), 0 28px 70px rgba(0, 0, 0, 0.18);
}

.needkitchenweb-sector-card {
    flex: 1;
    position: relative;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.needkitchenweb-sector-card:last-child {
    border-right: none;
}

.needkitchenweb-sector-card::before {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    opacity: 0;
    z-index: 3;
    transition: var(--needkitchenweb-transition-smooth);
    pointer-events: none;
}

.needkitchenweb-sector-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: saturate(0.95) contrast(1.08);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
    z-index: 1;
}

.needkitchenweb-sector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.54) 48%, rgba(0,0,0,0.92) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.04) 55%, rgba(0,0,0,0.42) 100%);
    transition: var(--needkitchenweb-transition-smooth);
    z-index: 2;
}

.needkitchenweb-sector-vertical-title {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: rotate(-90deg);
    transform-origin: left center;
    white-space: nowrap;
    z-index: 3;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-sector-vertical-title h3 {
    font-size: 0;
    font-weight: 900;
    letter-spacing: 3.5px;
    color: #FFFFFF;
    margin: 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 16px;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.55);
}

.needkitchenweb-sector-vertical-title h3::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--needkitchenweb-brand-red);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    box-shadow: 0 10px 28px rgba(227, 27, 35, 0.35);
}

.needkitchenweb-sector-vertical-title h3::after {
    color: #ffffff;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: 3.5px;
}

.needkitchenweb-sector-card:nth-child(1) .needkitchenweb-sector-vertical-title h3::before {
    content: '01';
}

.needkitchenweb-sector-card:nth-child(1) .needkitchenweb-sector-vertical-title h3::after {
    content: 'Commercial Kitchen';
}

.needkitchenweb-sector-card:nth-child(2) .needkitchenweb-sector-vertical-title h3::before {
    content: '02';
}

.needkitchenweb-sector-card:nth-child(2) .needkitchenweb-sector-vertical-title h3::after {
    content: 'Commercial Laundry';
}

.needkitchenweb-sector-card:nth-child(3) .needkitchenweb-sector-vertical-title h3::before {
    content: '03';
}

.needkitchenweb-sector-card:nth-child(3) .needkitchenweb-sector-vertical-title h3::after {
    content: 'Industrial Bakery';
}

.needkitchenweb-sector-card:nth-child(4) .needkitchenweb-sector-vertical-title h3::before {
    content: '04';
}

.needkitchenweb-sector-card:nth-child(4) .needkitchenweb-sector-vertical-title h3::after {
    content: 'Custom Fabrication';
}

.needkitchenweb-sector-card:nth-child(5) .needkitchenweb-sector-vertical-title h3::before {
    content: '05';
}

.needkitchenweb-sector-card:nth-child(5) .needkitchenweb-sector-vertical-title h3::after {
    content: 'Supermarket Solutions';
}

.needkitchenweb-sector-expanded-content {
    position: absolute;
    bottom: 34px;
    left: 34px;
    right: 34px;
    width: auto;
    padding: 34px;
    background: rgba(10, 10, 10, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 4px solid var(--needkitchenweb-brand-red);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 4;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.needkitchenweb-sector-icon {
    color: var(--needkitchenweb-brand-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    background: rgba(227, 27, 35, 0.12);
    border: 1px solid rgba(227, 27, 35, 0.28);
    border-radius: 50%;
    font-size: 24px;
}

.needkitchenweb-sector-expanded-title {
    font-size: 32px;
    font-weight: 900;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.05;
}

.needkitchenweb-sector-summary {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 24px;
    max-width: 540px;
}

.needkitchenweb-sector-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--needkitchenweb-brand-red);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-sector-link:hover {
    color: #FFFFFF;
    transform: translateX(5px);
}

/* Expansion States */
.needkitchenweb-sector-card:hover {
    flex: 2.8;
}

.needkitchenweb-sector-card:hover::before {
    opacity: 1;
}

.needkitchenweb-sector-card:hover .needkitchenweb-sector-bg {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.1);
}

.needkitchenweb-sector-card:hover .needkitchenweb-sector-overlay {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.35) 38%, rgba(0,0,0,0.9) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.48) 0%, rgba(0,0,0,0.08) 58%, rgba(227,27,35,0.22) 100%);
}

.needkitchenweb-sector-card:hover .needkitchenweb-sector-vertical-title {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

.needkitchenweb-sector-card:hover .needkitchenweb-sector-expanded-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0.15s;
}

/* ==========================================================================
   Section 4: Genuine Spare Parts â€” Creative Split Redesign
   ========================================================================== */
.needkitchenweb-spare-parts {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: #111111;
}

.needkitchenweb-parts-split-title {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.02em;
}

.needkitchenweb-parts-split-body {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    border-left: 3px solid var(--needkitchenweb-brand-red);
    padding-left: 20px;
}

.needkitchenweb-parts-split-body-sub {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.50);
    margin-top: 15px;
    padding-left: 23px;
}

.needkitchenweb-parts-form-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 50px 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.needkitchenweb-form-title {
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    margin-top: 10px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.needkitchenweb-form-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

.needkitchenweb-form-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--needkitchenweb-brand-red);
    margin-bottom: 8px;
}

.needkitchenweb-form-control {
    background-color: #222222 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #FFFFFF !important;
    padding: 12px 18px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    transition: var(--needkitchenweb-transition-smooth) !important;
}

.needkitchenweb-form-control:focus {
    background-color: #2a2a2a !important;
    border-color: var(--needkitchenweb-brand-red) !important;
    box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.2) !important;
    outline: none !important;
}

.needkitchenweb-form-control::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

/* ==========================================================================
   Section 5: Response Time Commitment Box
   ========================================================================== */
.needkitchenweb-commitment-section {
    padding: 100px 0;
    background-color: var(--needkitchenweb-soft-gray);
}

.needkitchenweb-commitment-box {
    background-color: var(--needkitchenweb-matte-black);
    color: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-top: 5px solid var(--needkitchenweb-brand-red);
}

.needkitchenweb-commitment-content {
    padding: 60px;
}

.needkitchenweb-commitment-badge {
    background-color: var(--needkitchenweb-brand-red);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
}

.needkitchenweb-commitment-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
}

.needkitchenweb-commitment-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
}

.needkitchenweb-commitment-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 35px 25px;
    height: 100%;
    transition: var(--needkitchenweb-transition-smooth);
    position: relative;
    overflow: hidden;
}

.needkitchenweb-commitment-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--needkitchenweb-brand-red);
    transform: translateY(-4px);
}

.needkitchenweb-commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--needkitchenweb-brand-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--needkitchenweb-transition-smooth);
}

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

.needkitchenweb-commitment-number {
    font-size: 46px;
    font-weight: 900;
    color: var(--needkitchenweb-brand-red);
    line-height: 1;
    margin-bottom: 12px;
}

.needkitchenweb-commitment-label {
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.needkitchenweb-commitment-subtext {
    font-size: 12px;
    color: var(--needkitchenweb-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================================================
   Section 6: Client Appreciation (Light Grid Carousel)
   ========================================================================== */
.needkitchenweb-testimonial-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}

.needkitchenweb-testimonial-carousel {
    max-width: 1200px;
    margin: 0 auto;
}

.needkitchenweb-testimonial-card-light {
    background: #FFFFFF;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.needkitchenweb-testimonial-card-light:hover {
    transform: translateY(-5px);
}

.needkitchenweb-quote-icon-light {
    font-size: 32px;
    color: #e6a753;
    font-family: inherit;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1;
}

.needkitchenweb-testimonial-text-light {
    font-size: 15px;
    font-style: italic;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
}

.needkitchenweb-client-info-light {
    display: flex;
    flex-direction: column;
}

.needkitchenweb-client-name-light {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin-bottom: 3px;
}

.needkitchenweb-client-company-light {
    font-size: 12px;
    color: #888;
}

.needkitchenweb-carousel-indicators {
    bottom: -45px !important;
}

.needkitchenweb-carousel-indicators button {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50%;
    background-color: var(--needkitchenweb-text-muted) !important;
    border: none !important;
    margin: 0 5px !important;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-carousel-indicators button.active {
    background-color: var(--needkitchenweb-brand-red) !important;
    width: 20px !important;
    border-radius: 10px !important;
}

/* ==========================================================================
   Section 7: Contact Us Form & B2B Partner Logos
   ========================================================================== */
.needkitchenweb-contact-section {
    background-color: var(--needkitchenweb-matte-black);
    color: #FFFFFF;
    padding: 100px 0;
}

.needkitchenweb-contact-info-column {
    padding-right: 40px;
}

.needkitchenweb-contact-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.needkitchenweb-contact-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 35px;
}

.needkitchenweb-contact-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 45px 0;
}

.needkitchenweb-contact-meta li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
}

.needkitchenweb-contact-meta li a {
    color: inherit;
    text-decoration: none;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-contact-meta li a:hover {
    color: var(--needkitchenweb-brand-red);
}

.needkitchenweb-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--needkitchenweb-brand-red);
    font-size: 16px;
}

/* Minimalist Partner Logo Grid */
.needkitchenweb-partners-grid {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
}

.needkitchenweb-partners-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.needkitchenweb-partner-logo-svg {
    height: 22px;
    fill: rgba(255, 255, 255, 0.35);
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-partner-logo-svg:hover {
    fill: rgba(255, 255, 255, 0.85);
}

/* Form Customization */
.needkitchenweb-form-wrapper {
    background-color: var(--needkitchenweb-deep-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

.needkitchenweb-form-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    display: block;
}

.needkitchenweb-form-control {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #FFFFFF !important;
    border-radius: 6px;
    padding: 12px 18px;
    font-size: 14px;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-form-control:focus {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: var(--needkitchenweb-brand-red);
    box-shadow: 0 0 10px rgba(227, 27, 35, 0.15);
}

select.needkitchenweb-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 11px 11px;
    padding-right: 35px;
}

select.needkitchenweb-form-control option {
    background-color: var(--needkitchenweb-deep-charcoal);
    color: #FFFFFF;
}

/* ==========================================================================
   Global Footer
   ========================================================================== */
.needkitchenweb-footer {
    background-color: #0A0A0A;
    color: #FFFFFF;
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.needkitchenweb-footer-col {
    margin-bottom: 35px;
}

.needkitchenweb-footer-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    color: #fff;
}

.needkitchenweb-footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--needkitchenweb-brand-red);
}

.needkitchenweb-footer-logo {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 1.5px;
    color: #FFFFFF !important;
    text-decoration: none;
    margin-bottom: 12px;
    display: inline-block;
}

.needkitchenweb-footer-logo-img {
    height: 38px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.needkitchenweb-footer-motto {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--needkitchenweb-brand-red);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.needkitchenweb-footer-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--needkitchenweb-text-muted);
}

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

.needkitchenweb-footer-links li {
    margin-bottom: 10px;
}

.needkitchenweb-footer-links li a {
    color: var(--needkitchenweb-text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: var(--needkitchenweb-transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.needkitchenweb-footer-links li a::before {
    content: '→';
    font-size: 11px;
    color: var(--needkitchenweb-brand-red);
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-footer-links li a:hover {
    color: #FFFFFF;
    padding-left: 4px;
}

.needkitchenweb-footer-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.needkitchenweb-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: var(--needkitchenweb-text-muted);
}

.needkitchenweb-footer-contact-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.needkitchenweb-footer-contact-list i {
    color: var(--needkitchenweb-brand-red);
    margin-top: 3px;
}

.needkitchenweb-footer-contact-list a {
    color: inherit;
    text-decoration: none;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-footer-contact-list a:hover {
    color: #FFFFFF;
}

/* Bottom Footer Bar */
.needkitchenweb-footer-bottom {
    background-color: #060606;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    margin-top: 30px;
}

.needkitchenweb-footer-socials {
    display: flex;
    gap: 12px;
}

.needkitchenweb-footer-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-footer-social-icon:hover {
    background-color: var(--needkitchenweb-brand-red);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.needkitchenweb-copyright-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 12px;
    color: var(--needkitchenweb-text-muted);
}

.needkitchenweb-copyright-links li a {
    color: inherit;
    text-decoration: none;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-copyright-links li a:hover {
    color: #FFFFFF;
}

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.needkitchenweb-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.needkitchenweb-reveal.needkitchenweb-active {
    opacity: 1;
    transform: translateY(0);
}

.needkitchenweb-back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background-color: var(--needkitchenweb-brand-red);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 12px rgba(227, 27, 35, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: var(--needkitchenweb-transition-smooth);
    z-index: 999;
}

.needkitchenweb-back-to-top.needkitchenweb-show {
    opacity: 1;
    visibility: visible;
}

.needkitchenweb-back-to-top:hover {
    background-color: var(--needkitchenweb-brand-red-hover);
    color: #FFFFFF;
    transform: translateY(-4px);
}

/* ==========================================================================
   Inner Page: About Us Dedicated Styles (White Background Theme)
   ========================================================================== */

/* 1. Page Banner */
.needkitchenweb-about-page-banner,
.needkitchenweb-contact-page-banner {
    position: relative;
    padding-top: 160px; /* offset for transparent navbar */
    padding-bottom: 70px;
    background-color: var(--needkitchenweb-matte-black);
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    overflow: hidden;
}

.needkitchenweb-about-page-banner-overlay,
.needkitchenweb-contact-page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.8) 0%, rgba(18, 18, 18, 0.95) 100%);
    z-index: 1;
}

.needkitchenweb-about-page-banner-content,
.needkitchenweb-contact-page-banner-content {
    position: relative;
    z-index: 2;
}

.needkitchenweb-about-page-title,
.needkitchenweb-contact-page-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.needkitchenweb-about-breadcrumb,
.needkitchenweb-contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.needkitchenweb-about-breadcrumb-item a,
.needkitchenweb-contact-breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-about-breadcrumb-item a:hover,
.needkitchenweb-contact-breadcrumb-item a:hover {
    color: var(--needkitchenweb-brand-red);
}

.needkitchenweb-about-breadcrumb-item.active,
.needkitchenweb-contact-breadcrumb-item.active {
    color: var(--needkitchenweb-brand-red);
}

.needkitchenweb-about-breadcrumb-separator,
.needkitchenweb-contact-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
}

/* 2. Who We Are Section (White Theme) */
.needkitchenweb-about-who-we-are {
    position: relative;
    background-color: #FFFFFF;
    color: var(--needkitchenweb-matte-black);
    padding: 100px 0 0 0;
    overflow: hidden;
}

.needkitchenweb-about-blueprint-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
    opacity: 0.85;
    z-index: 1;
    pointer-events: none;
}

.needkitchenweb-about-blueprint-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(227, 27, 35, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.needkitchenweb-about-overlapping-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--needkitchenweb-border-gray);
    border-left: 4px solid var(--needkitchenweb-brand-red);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 50px 40px;
    position: relative;
    z-index: 5;
    margin-right: -100px;
    color: var(--needkitchenweb-matte-black);
}

.needkitchenweb-about-who-title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--needkitchenweb-matte-black);
    margin-bottom: 25px;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.needkitchenweb-about-who-body {
    font-size: 14px;
    line-height: 1.8;
    color: #444444;
}

.needkitchenweb-about-who-body strong {
    color: var(--needkitchenweb-matte-black);
}

.needkitchenweb-about-who-visual-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    z-index: 2;
}

.needkitchenweb-about-who-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: var(--needkitchenweb-transition-smooth);
}

/* 3. Credentials Stats Row (Light Theme) */
.needkitchenweb-about-stats-row {
    margin-top: 80px;
    position: relative;
    z-index: 5;
    background: var(--needkitchenweb-soft-gray);
    border: 1px solid var(--needkitchenweb-border-gray);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.needkitchenweb-about-stat-block {
    text-align: center;
    border-right: 1px solid var(--needkitchenweb-border-gray);
}

.needkitchenweb-about-stat-block:last-child {
    border-right: none;
}

.needkitchenweb-about-stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--needkitchenweb-brand-red);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.needkitchenweb-about-stat-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--needkitchenweb-matte-black);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.needkitchenweb-about-stat-sub {
    font-size: 11px;
    color: var(--needkitchenweb-text-muted);
}

/* 4. Values Section (Light Theme) */
.needkitchenweb-about-values-section {
    background-color: #FFFFFF;
    padding: 100px 0;
    position: relative;
}

.needkitchenweb-about-value-card {
    background: var(--needkitchenweb-soft-gray);
    border: 1px solid var(--needkitchenweb-border-gray);
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    transition: var(--needkitchenweb-transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.needkitchenweb-about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--needkitchenweb-brand-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-about-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.needkitchenweb-about-value-card:hover::before {
    transform: scaleX(1);
}

.needkitchenweb-about-value-icon {
    font-size: 36px;
    color: var(--needkitchenweb-brand-red);
    margin-bottom: 24px;
    display: inline-block;
    transition: var(--needkitchenweb-transition-elastic);
}

.needkitchenweb-about-value-card:hover .needkitchenweb-about-value-icon {
    transform: scale(1.1) rotate(5deg);
}

.needkitchenweb-about-value-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--needkitchenweb-matte-black);
    margin-bottom: 14px;
}

.needkitchenweb-about-value-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--needkitchenweb-text-muted);
    margin: 0;
}

/* 5. Contact Section (Light Theme) */
.needkitchenweb-about-contact-section,
.needkitchenweb-contact-contact-section {
    background-color: #FFFFFF;
    color: var(--needkitchenweb-matte-black);
    border-top: 1px solid var(--needkitchenweb-border-gray);
    padding: 100px 0;
}

.needkitchenweb-about-contact-info-column,
.needkitchenweb-contact-contact-info-column {
    padding-right: 40px;
}

.needkitchenweb-about-contact-title,
.needkitchenweb-contact-contact-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--needkitchenweb-matte-black);
}

.needkitchenweb-about-contact-desc,
.needkitchenweb-contact-contact-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 35px;
}

.needkitchenweb-about-contact-meta,
.needkitchenweb-contact-contact-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 45px 0;
}

.needkitchenweb-about-contact-meta li,
.needkitchenweb-contact-contact-meta li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--needkitchenweb-matte-black);
}

.needkitchenweb-about-contact-meta li a,
.needkitchenweb-contact-contact-meta li a {
    color: inherit;
    text-decoration: none;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-about-contact-meta li a:hover,
.needkitchenweb-contact-contact-meta li a:hover {
    color: var(--needkitchenweb-brand-red);
}

.needkitchenweb-about-contact-icon,
.needkitchenweb-contact-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--needkitchenweb-soft-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--needkitchenweb-brand-red);
    font-size: 16px;
}

/* Partners grid */
.needkitchenweb-about-partners-grid,
.needkitchenweb-contact-partners-grid {
    border-top: 1px solid var(--needkitchenweb-border-gray);
    padding-top: 30px;
}

.needkitchenweb-about-partners-label,
.needkitchenweb-contact-partners-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--needkitchenweb-text-muted);
    margin-bottom: 20px;
}

.needkitchenweb-about-partner-logo-svg,
.needkitchenweb-contact-partner-logo-svg {
    height: 22px;
    fill: var(--needkitchenweb-text-muted);
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-about-partner-logo-svg:hover,
.needkitchenweb-contact-partner-logo-svg:hover {
    fill: var(--needkitchenweb-matte-black);
}

/* 6. Form Wrapper and Controls */
.needkitchenweb-about-form-wrapper,
.needkitchenweb-contact-form-wrapper {
    background-color: var(--needkitchenweb-soft-gray);
    border: 1px solid var(--needkitchenweb-border-gray);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.needkitchenweb-about-form-group,
.needkitchenweb-contact-form-group {
    margin-bottom: 20px;
}

.needkitchenweb-about-form-label,
.needkitchenweb-contact-form-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--needkitchenweb-matte-black);
    margin-bottom: 8px;
    display: block;
}

.needkitchenweb-about-form-control,
.needkitchenweb-contact-form-control {
    background-color: #FFFFFF;
    border: 1px solid var(--needkitchenweb-border-gray);
    color: var(--needkitchenweb-matte-black) !important;
    border-radius: 6px;
    padding: 12px 18px;
    font-size: 14px;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-about-form-control:focus,
.needkitchenweb-contact-form-control:focus {
    background-color: #FFFFFF;
    border-color: var(--needkitchenweb-brand-red);
    box-shadow: 0 0 10px rgba(227, 27, 35, 0.1);
}

select.needkitchenweb-about-form-control,
select.needkitchenweb-contact-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 11px 11px;
    padding-right: 35px;
    height: 45px;
}

select.needkitchenweb-about-form-control option,
select.needkitchenweb-contact-form-control option {
    background-color: #FFFFFF;
    color: var(--needkitchenweb-matte-black);
}

/* ==========================================================================
   Services Section (Services We Offer)
   ========================================================================== */
.needkitchenweb-services-section {
    padding: 100px 0;
    background-color: #F8F9FA;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    position: relative;
    overflow: hidden;
}

/* Glowing ambient background orbs */
.needkitchenweb-services-section::before,
.needkitchenweb-services-section::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 27, 35, 0.045) 0%, rgba(227, 27, 35, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.needkitchenweb-services-section::before {
    top: -100px;
    left: -150px;
}

.needkitchenweb-services-section::after {
    bottom: -150px;
    right: -150px;
}

.needkitchenweb-services-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.needkitchenweb-services-title-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.needkitchenweb-services-title-bar {
    width: 4px;
    height: 34px;
    background-color: var(--needkitchenweb-brand-red);
    margin-right: 15px;
    display: inline-block;
    border-radius: 2px;
}

.needkitchenweb-services-section-title {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--needkitchenweb-brand-red);
    margin: 0;
}

.needkitchenweb-services-subtitle {
    font-size: 15px;
    max-width: 700px;
    line-height: 1.6;
}

.needkitchenweb-services-grid {
    position: relative;
    z-index: 1;
}

/* Staggered entry animation delays */
.needkitchenweb-services-grid .needkitchenweb-reveal:nth-child(1) {
    transition-delay: 0s;
}
.needkitchenweb-services-grid .needkitchenweb-reveal:nth-child(2) {
    transition-delay: 0.15s;
}
.needkitchenweb-services-grid .needkitchenweb-reveal:nth-child(3) {
    transition-delay: 0.3s;
}
.needkitchenweb-services-grid .needkitchenweb-reveal:nth-child(4) {
    transition-delay: 0.45s;
}

.needkitchenweb-services-card {
    position: relative;
    background-color: #FFFFFF;
    border: 1px solid var(--needkitchenweb-border-gray);
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    transition: var(--needkitchenweb-transition-smooth);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
    z-index: 1;
}

/* Premium Red-to-Dark Gradient Hover Layer */
.needkitchenweb-services-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--needkitchenweb-brand-red) 0%, #121212 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Glowing Bottom Border */
.needkitchenweb-services-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #FFFFFF;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--needkitchenweb-transition-smooth);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.needkitchenweb-services-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(227, 27, 35, 0.22);
    border-color: transparent;
}

.needkitchenweb-services-card:hover::before {
    opacity: 1;
}

.needkitchenweb-services-card:hover::after {
    transform: scaleX(1);
}

.needkitchenweb-services-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--needkitchenweb-brand-red-light);
    color: var(--needkitchenweb-brand-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-services-card:hover .needkitchenweb-services-icon-box {
    background-color: #FFFFFF;
    color: var(--needkitchenweb-brand-red);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.needkitchenweb-services-badge-wrap {
    margin-bottom: 18px;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-services-badge {
    color: var(--needkitchenweb-brand-red);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-services-card:hover .needkitchenweb-services-badge {
    color: #FFFFFF;
}

.needkitchenweb-services-text {
    font-size: 14px;
    line-height: 1.8;
    color: #4A4A4A;
    margin: 0;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-services-card:hover .needkitchenweb-services-text {
    color: rgba(255, 255, 255, 0.9);
}

.needkitchenweb-services-num {
    position: absolute;
    right: 35px;
    top: 25px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    pointer-events: none;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-services-card:hover .needkitchenweb-services-num {
    color: rgba(255, 255, 255, 0.08);
    transform: scale(1.25) translate(-10px, -5px);
}

/* Unique Icon Hover Keyframe Animations */
.needkitchenweb-services-card:hover .needkitchenweb-services-icon-box i.fa-handshake {
    animation: needkitchenweb-shake 0.6s ease-in-out infinite;
}

.needkitchenweb-services-card:hover .needkitchenweb-services-icon-box i.fa-compass-drafting {
    animation: needkitchenweb-draw 1.2s ease-in-out infinite;
}

.needkitchenweb-services-card:hover .needkitchenweb-services-icon-box i.fa-gears {
    animation: needkitchenweb-spin 2.5s linear infinite;
}

.needkitchenweb-services-card:hover .needkitchenweb-services-icon-box i.fa-screwdriver-wrench {
    animation: needkitchenweb-wrench 0.8s ease-in-out infinite;
}

@keyframes needkitchenweb-shake {
    0%, 100% { transform: rotate(0deg); }
    20%, 60% { transform: rotate(-8deg); }
    40%, 80% { transform: rotate(8deg); }
}

@keyframes needkitchenweb-draw {
    0%, 100% { transform: rotate(0deg) translate(0, 0); }
    30% { transform: rotate(12deg) translate(1px, -1px); }
    70% { transform: rotate(-12deg) translate(-1px, 1px); }
}

@keyframes needkitchenweb-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes needkitchenweb-wrench {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-25deg) translateY(-2px); }
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 991px) {
    .needkitchenweb-navbar {
        background-color: #FFFFFF !important;
        padding: 15px 0;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    }
    
    .needkitchenweb-brand-logo-white {
        display: none !important;
    }
    
    .needkitchenweb-brand-logo-dark {
        display: block !important;
    }
    
    .needkitchenweb-brand-text {
        color: var(--needkitchenweb-matte-black) !important;
    }
    
    .needkitchenweb-brand-subtext {
        color: var(--needkitchenweb-text-muted) !important;
    }
    
    .needkitchenweb-navbar svg.needkitchenweb-brand-logo-img path {
        stroke: #121212 !important;
    }
    
    .needkitchenweb-navbar svg.needkitchenweb-brand-logo-img path[stroke="#E31B23"] {
        stroke: #E31B23 !important;
    }
    
    .needkitchenweb-navbar-toggler-icon,
    .needkitchenweb-navbar-toggler-icon::before,
    .needkitchenweb-navbar-toggler-icon::after {
        background-color: var(--needkitchenweb-matte-black) !important;
    }
    
    .needkitchenweb-navbar .navbar-nav {
        align-items: flex-start !important;
        width: 100%;
    }
    
    .needkitchenweb-navbar .nav-item {
        width: 100%;
        text-align: left;
    }
    
    .needkitchenweb-nav-link {
        color: var(--needkitchenweb-matte-black) !important;
        padding: 12px 15px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        display: block;
        width: 100%;
        text-align: left;
    }
    
    .needkitchenweb-nav-link:hover {
        color: var(--needkitchenweb-brand-red) !important;
        background-color: var(--needkitchenweb-soft-gray);
    }
    
    .needkitchenweb-nav-link::after {
        display: none;
    }
    
    .needkitchenweb-dropdown-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding-left: 15px;
        transform: none;
        border-left: 2px solid var(--needkitchenweb-brand-red);
        border-radius: 0;
        background-color: var(--needkitchenweb-soft-gray);
        margin-top: 5px;
    }
    
    .needkitchenweb-dropdown-menu.show {
        display: block;
    }
    
    .needkitchenweb-hero-frame-container {
        padding: 0;
    }
    
    .needkitchenweb-hero-wrapper {
        border-radius: 0;
        height: 100vh;
        min-height: 560px;
    }
    
    .needkitchenweb-hero-content {
        text-align: left;
        padding: 0 20px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 30px;
        width: 100%;
    }
    
    .needkitchenweb-hero-title {
        font-size: 32px;
    }
    
    .needkitchenweb-hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    /* Solutions Finder mobile vertical layout stack */
    .needkitchenweb-solutions-finder {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 20px;
        border-radius: 18px;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        background: var(--needkitchenweb-deep-charcoal);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .needkitchenweb-finder-field {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .needkitchenweb-finder-btn {
        width: 100%;
        border-radius: 6px;
        height: 48px;
    }
    
    .needkitchenweb-overlapping-card {
        margin-right: 0;
        margin-top: -30px;
        padding: 25px;
    }
    
    .needkitchenweb-who-visual-wrapper {
        height: 320px;
    }
    
    .needkitchenweb-who-title {
        font-size: 24px;
    }
    
    .needkitchenweb-stats-row {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .needkitchenweb-stat-block {
        border-right: none;
        border-bottom: 1px solid var(--needkitchenweb-border-gray);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .needkitchenweb-stat-block:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .needkitchenweb-stat-number {
        font-size: 40px;
    }
    
    .needkitchenweb-sectors-container {
        flex-direction: column;
        height: auto;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .needkitchenweb-sector-card {
        height: 240px;
        flex: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .needkitchenweb-sector-vertical-title {
        transform: translate(-50%, -50%);
        transform-origin: center center;
        bottom: auto;
        top: 50%;
        left: 50%;
        width: 100%;
        text-align: center;
    }
    
    .needkitchenweb-sector-vertical-title h3 {
        font-size: 15px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        line-height: 1.3;
    }
    
    .needkitchenweb-sector-card:hover {
        height: 380px;
        flex: none;
    }
    
    .needkitchenweb-sector-card:hover .needkitchenweb-sector-vertical-title {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(0deg) scale(0.8);
    }
    
    .needkitchenweb-sector-expanded-content {
        padding: 20px;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .needkitchenweb-sector-expanded-title {
        font-size: 20px;
    }
    
    .needkitchenweb-parts-body {
        max-width: 90%;
    }
    
    .needkitchenweb-commitment-content {
        padding: 25px;
    }
    
    .needkitchenweb-contact-info-column {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .needkitchenweb-copyright-links {
        justify-content: flex-start;
        margin-top: 10px;
    }
    
    /* Services Section Mobile Styles */
    .needkitchenweb-services-section {
        padding: 60px 0;
    }
    
    .needkitchenweb-services-header {
        margin-bottom: 40px;
    }
    
    .needkitchenweb-services-card {
        padding: 30px;
    }
    
    .needkitchenweb-services-title-bar {
        width: 3px;
        height: 28px;
        margin-right: 10px;
    }
    
    .needkitchenweb-services-section-title {
        font-size: 26px;
    }
    
    .needkitchenweb-services-icon-box {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .needkitchenweb-services-badge {
        font-size: 18px;
    }
    
    /* Avoid huge shifts in card watermark text on mobile viewports */
    .needkitchenweb-services-card:hover .needkitchenweb-services-num {
        transform: scale(1.15) translate(-5px, -2px);
    }
}
/* ==========================================================================
   INFINITE Oman - Products Page Dedicated Stylesheet
   All styles scoped under page-specific classes to prevent conflicts.
   ========================================================================== */

/* Page Banner */
.needkitchenweb-products-page-banner {
    position: relative;
    padding: 180px 0 100px;
    background-color: #121212;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(227, 27, 35, 0.08) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: auto, 40px 40px, 40px 40px;
    color: #FFFFFF;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.needkitchenweb-products-page-banner::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 27, 35, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.needkitchenweb-products-page-title {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 15px;
    line-height: 1;
}

.needkitchenweb-products-page-title span {
    color: var(--needkitchenweb-brand-red);
}

.needkitchenweb-products-breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.needkitchenweb-products-breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-products-breadcrumb-item a:hover {
    color: var(--needkitchenweb-brand-red);
}

.needkitchenweb-products-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    margin: 0 12px;
}

.needkitchenweb-products-breadcrumb-item.active {
    color: var(--needkitchenweb-brand-red);
    font-size: 13px;
    font-weight: 600;
}

/* Catalog Section */
.needkitchenweb-products-section {
    padding: 80px 0 100px;
    background-color: #F8F9FA;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Filter Bar styles */
.needkitchenweb-products-filter-wrapper {
    margin-bottom: 50px;
    position: sticky;
    top: var(--navbar-height, 90px); /* Sticks right below the desktop header dynamically */
    z-index: 990;
    background-color: #F8F9FA;
    padding: 10px 0;
    transition: top 0.15s ease;
}

.needkitchenweb-products-filter-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.needkitchenweb-filter-btn {
    background-color: #FFFFFF;
    border: 1px solid var(--needkitchenweb-border-gray);
    color: var(--needkitchenweb-text-dark);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-filter-btn:hover {
    border-color: var(--needkitchenweb-brand-red);
    color: var(--needkitchenweb-brand-red);
    transform: translateY(-2px);
}

.needkitchenweb-filter-btn.active {
    background-color: var(--needkitchenweb-brand-red);
    border-color: var(--needkitchenweb-brand-red);
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(227, 27, 35, 0.2);
}

/* Product Cards Grid */
.needkitchenweb-products-grid {
    transition: all 0.4s ease;
}

.needkitchenweb-product-card-wrapper {
    transition: all 0.4s ease;
}

/* Card Entry/Exit states for JS filtering */
.needkitchenweb-product-card-wrapper.filtered-out {
    display: none;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
}

.needkitchenweb-product-card {
    background-color: #FFFFFF;
    border: 1px solid var(--needkitchenweb-border-gray);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08), 0 0 20px rgba(227, 27, 35, 0.05);
    border-color: rgba(227, 27, 35, 0.15);
}

/* Image Container */
.needkitchenweb-product-img-box {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #ECEFF1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.needkitchenweb-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.needkitchenweb-product-card:hover .needkitchenweb-product-img {
    transform: scale(1.08);
}

/* Badging */
.needkitchenweb-product-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Info Panel */
.needkitchenweb-product-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.needkitchenweb-product-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--needkitchenweb-matte-black);
    margin-bottom: 10px;
    line-height: 1.3;
}

.needkitchenweb-product-summary {
    font-size: 13.5px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Technical Specification Table Inside Card */
.needkitchenweb-product-specs-list {
    margin-bottom: 24px;
    border-top: 1px solid var(--needkitchenweb-border-gray);
    padding-top: 15px;
}

.needkitchenweb-product-spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.needkitchenweb-product-spec-row:last-child {
    margin-bottom: 0;
}

.needkitchenweb-spec-label {
    color: #888888;
    font-weight: 500;
}

.needkitchenweb-spec-value {
    color: var(--needkitchenweb-text-dark);
    font-weight: 700;
}

/* Card Actions */
.needkitchenweb-product-actions {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 10px;
    margin-top: auto;
}

.needkitchenweb-product-btn-quote {
    background-color: var(--needkitchenweb-brand-red);
    color: #FFFFFF;
    border: 1px solid var(--needkitchenweb-brand-red);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-product-btn-quote:hover {
    background-color: var(--needkitchenweb-brand-red-hover);
    border-color: var(--needkitchenweb-brand-red-hover);
    color: #FFFFFF;
}

.needkitchenweb-product-btn-specs {
    background-color: #FFFFFF;
    color: var(--needkitchenweb-text-dark);
    border: 1px solid var(--needkitchenweb-border-gray);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-product-btn-specs:hover {
    background-color: var(--needkitchenweb-soft-gray);
    border-color: var(--needkitchenweb-text-dark);
}

/* Catalog Banner Strip */
.needkitchenweb-catalog-download-banner {
    background-color: #121212;
    background-image: 
        radial-gradient(circle at 90% 10%, rgba(227, 27, 35, 0.06) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: auto, 40px 40px, 40px 40px;
    padding: 80px 0;
    color: #FFFFFF;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.needkitchenweb-catalog-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.needkitchenweb-catalog-title {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.needkitchenweb-catalog-title span {
    color: var(--needkitchenweb-brand-red);
}

.needkitchenweb-catalog-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Spec Sheet Modal Drawer (Slide-out or Pop-up) */
.needkitchenweb-spec-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.needkitchenweb-spec-modal.show {
    display: flex;
    opacity: 1;
}

.needkitchenweb-spec-dialog {
    background-color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 100%;
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.needkitchenweb-spec-modal.show .needkitchenweb-spec-dialog {
    transform: translateY(0);
}

.needkitchenweb-spec-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--needkitchenweb-soft-gray);
    border: none;
    color: var(--needkitchenweb-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-spec-close-btn:hover {
    background-color: var(--needkitchenweb-brand-red);
    color: #FFFFFF;
    transform: rotate(90deg);
}

.needkitchenweb-spec-header {
    padding: 35px 35px 20px;
    border-bottom: 1px solid var(--needkitchenweb-border-gray);
}

.needkitchenweb-spec-modal-cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--needkitchenweb-brand-red);
    display: inline-block;
    margin-bottom: 8px;
}

.needkitchenweb-spec-modal-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--needkitchenweb-matte-black);
    line-height: 1.2;
}

.needkitchenweb-spec-body {
    padding: 35px;
}

.needkitchenweb-spec-long-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 30px;
}

.needkitchenweb-spec-detailed-table {
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
}

.needkitchenweb-spec-detailed-table tr {
    border-bottom: 1px solid var(--needkitchenweb-border-gray);
}

.needkitchenweb-spec-detailed-table tr:last-child {
    border-bottom: none;
}

.needkitchenweb-spec-detailed-table td {
    padding: 12px 0;
    font-size: 13.5px;
}

.needkitchenweb-spec-detailed-table td.label-col {
    color: #777777;
    font-weight: 600;
    width: 35%;
}

.needkitchenweb-spec-detailed-table td.value-col {
    color: var(--needkitchenweb-text-dark);
    font-weight: 700;
}

.needkitchenweb-spec-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.needkitchenweb-spec-features-list li {
    font-size: 13px;
    font-weight: 600;
    color: var(--needkitchenweb-text-dark);
    display: flex;
    align-items: center;
}

.needkitchenweb-spec-features-list li i {
    color: var(--needkitchenweb-brand-red);
    margin-right: 10px;
    font-size: 14px;
}

.needkitchenweb-spec-footer-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.needkitchenweb-spec-modal-btn-close {
    background-color: var(--needkitchenweb-soft-gray);
    color: var(--needkitchenweb-text-dark);
    border: 1px solid var(--needkitchenweb-border-gray);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-spec-modal-btn-close:hover {
    background-color: #E2E8F0;
    border-color: #CBD5E1;
}

/* Scrollbar lock during modal */
body.modal-open {
    overflow: hidden;
    padding-right: 15px; /* Adjust layout offset scrollbar collapse */
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .needkitchenweb-products-page-banner {
        padding: 140px 0 60px;
    }

    .needkitchenweb-products-page-title {
        font-size: 34px;
    }

    .needkitchenweb-products-section {
        padding: 50px 0 60px;
    }

    /* Transform Filter bar to horizontal scroll list on mobile viewports */
    .needkitchenweb-products-filter-wrapper {
        position: sticky;
        top: var(--navbar-height, 65px); /* Sticks right below the mobile collapsed navbar dynamically */
        z-index: 990;
        background-color: #F8F9FA;
        overflow-x: auto;
        white-space: nowrap;
        padding-top: 10px;
        padding-bottom: 15px;
        margin-top: -10px;
        margin-bottom: 25px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .needkitchenweb-products-filter-wrapper::-webkit-scrollbar {
        display: none;
    }

    .needkitchenweb-products-filter-list {
        display: inline-flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0 15px;
    }

    .needkitchenweb-filter-btn {
        padding: 8px 18px;
        font-size: 12px;
    }

    .needkitchenweb-filter-btn.active {
        box-shadow: 0 6px 12px rgba(227, 27, 35, 0.2);
    }

    .needkitchenweb-catalog-box {
        padding: 30px;
    }

    .needkitchenweb-catalog-title {
        font-size: 24px;
    }

    .needkitchenweb-catalog-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .needkitchenweb-spec-dialog {
        max-width: 90%;
        max-height: 90vh;
    }

    .needkitchenweb-spec-header, .needkitchenweb-spec-body {
        padding: 25px;
    }

    .needkitchenweb-spec-features-list {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   INFINITE Oman - Services Page Dedicated Stylesheet
   All styles scoped under page-specific classes to prevent conflicts.
   ========================================================================== */

/* Page Banner */
.needkitchenweb-services-page-banner {
    position: relative;
    padding: 180px 0 100px;
    background-color: #121212;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(227, 27, 35, 0.08) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: auto, 40px 40px, 40px 40px;
    color: #FFFFFF;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.needkitchenweb-services-page-banner::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 27, 35, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.needkitchenweb-services-page-title {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 15px;
    line-height: 1;
    color: #fff;
}

.needkitchenweb-services-page-title span {
    color: var(--needkitchenweb-brand-red);
}

.needkitchenweb-services-breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.needkitchenweb-services-breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-services-breadcrumb-item a:hover {
    color: var(--needkitchenweb-brand-red);
}

.needkitchenweb-services-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    margin: 0 12px;
}

.needkitchenweb-services-breadcrumb-item.active {
    color: var(--needkitchenweb-brand-red);
    font-size: 13px;
    font-weight: 600;
}

/* Page Body Layout */
.needkitchenweb-services-page-section {
    padding: 100px 0;
    background-color: #F8F9FA;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    position: relative;
}

/* Sticky Navigation Sidebar */
.needkitchenweb-services-sidebar-wrapper {
    position: sticky;
    top: 120px;
    padding-right: 20px;
    z-index: 10;
}

.needkitchenweb-services-sidebar-card {
    background-color: #FFFFFF;
    border: 1px solid var(--needkitchenweb-border-gray);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.needkitchenweb-services-sidebar-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--needkitchenweb-text-muted);
    margin-bottom: 25px;
    border-bottom: 1px solid var(--needkitchenweb-border-gray);
    padding-bottom: 12px;
}

.needkitchenweb-services-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

/* Timeline vertical line tracking */
.needkitchenweb-services-sidebar-list::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: var(--needkitchenweb-border-gray);
}

.needkitchenweb-services-sidebar-item {
    position: relative;
    padding-left: 45px;
    margin-bottom: 30px;
}

.needkitchenweb-services-sidebar-item:last-child {
    margin-bottom: 0;
}

.needkitchenweb-services-sidebar-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--needkitchenweb-text-dark);
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-services-sidebar-item-bullet {
    position: absolute;
    left: 14px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 2px solid var(--needkitchenweb-text-muted);
    z-index: 2;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-services-sidebar-item-num {
    font-size: 10px;
    font-weight: 700;
    color: var(--needkitchenweb-brand-red);
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.needkitchenweb-services-sidebar-item-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--needkitchenweb-text-dark);
    transition: var(--needkitchenweb-transition-smooth);
}

/* Active index element state */
.needkitchenweb-services-sidebar-item.active .needkitchenweb-services-sidebar-item-bullet {
    border-color: var(--needkitchenweb-brand-red);
    background-color: var(--needkitchenweb-brand-red);
    box-shadow: 0 0 10px rgba(227, 27, 35, 0.4);
}

.needkitchenweb-services-sidebar-item.active .needkitchenweb-services-sidebar-item-name {
    color: var(--needkitchenweb-brand-red);
    transform: translateX(3px);
}

/* Service Detail Sections (Right side) */
.needkitchenweb-services-detail-section {
    background-color: #FFFFFF;
    border: 1px solid var(--needkitchenweb-border-gray);
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.015);
    position: relative;
    overflow: hidden;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-services-detail-section:last-child {
    margin-bottom: 0;
}

.needkitchenweb-services-detail-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.03);
}

/* Absolute offset large index number background */
.needkitchenweb-services-detail-number-bg {
    position: absolute;
    right: 40px;
    top: 20px;
    font-size: 130px;
    font-weight: 900;
    color: rgba(227, 27, 35, 0.025);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.needkitchenweb-services-detail-badge {
    background-color: var(--needkitchenweb-brand-red-light);
    color: var(--needkitchenweb-brand-red);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.needkitchenweb-services-detail-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--needkitchenweb-matte-black);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.needkitchenweb-services-detail-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 30px;
}

/* Features Grid Layout */
.needkitchenweb-services-features-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--needkitchenweb-matte-black);
    margin-bottom: 20px;
}

.needkitchenweb-services-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

/* Glassmorphism Feature Panels */
.needkitchenweb-services-feature-card {
    background-color: var(--needkitchenweb-soft-gray);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-services-feature-card:hover {
    background-color: var(--needkitchenweb-brand-red-light);
    border-color: rgba(227, 27, 35, 0.1);
    transform: translateX(4px);
}

.needkitchenweb-services-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: var(--needkitchenweb-brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-services-feature-card:hover .needkitchenweb-services-feature-icon {
    background-color: var(--needkitchenweb-brand-red);
    color: #FFFFFF;
}

.needkitchenweb-services-feature-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--needkitchenweb-text-dark);
}

/* Contact/Inquiry Button Inside Details */
.needkitchenweb-services-detail-cta {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--needkitchenweb-brand-red);
    text-decoration: none;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-services-detail-cta i {
    margin-left: 8px;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-services-detail-cta:hover {
    color: var(--needkitchenweb-brand-red-hover);
}

.needkitchenweb-services-detail-cta:hover i {
    transform: translateX(5px);
}

/* Schematic blueprint & animated CSS drawings for left/right graphics */
.needkitchenweb-services-graphic-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    background-color: #0c101c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blueprint design background grid */
.needkitchenweb-services-blueprint-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(227, 27, 35, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 27, 35, 0.15) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.2;
}

.needkitchenweb-services-graphic-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.needkitchenweb-services-graphic-icon {
    font-size: 55px;
    color: var(--needkitchenweb-brand-red);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(227, 27, 35, 0.4);
}

.needkitchenweb-services-graphic-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
}

/* Animation Loops for Graphics */
.needkitchenweb-services-graphic-wrapper:hover .fa-handshake {
    animation: needkitchenweb-shake 0.6s ease-in-out infinite;
}

.needkitchenweb-services-graphic-wrapper:hover .fa-compass-drafting {
    animation: needkitchenweb-draw 1.2s ease-in-out infinite;
}

.needkitchenweb-services-graphic-wrapper:hover .fa-gears {
    animation: needkitchenweb-spin 2.5s linear infinite;
}

.needkitchenweb-services-graphic-wrapper:hover .fa-screwdriver-wrench {
    animation: needkitchenweb-wrench 0.8s ease-in-out infinite;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .needkitchenweb-services-page-banner {
        padding: 140px 0 60px;
    }

    .needkitchenweb-services-page-title {
        font-size: 34px;
    }

    .needkitchenweb-services-page-section {
        padding: 50px 0;
    }

    /* Transform Sticky Sidebar into horizontal scroll bar on mobile viewports */
    .needkitchenweb-services-sidebar-wrapper {
        position: sticky;
        top: 75px;
        padding-right: 0;
        margin-bottom: 30px;
        background-color: #F8F9FA;
        padding: 10px 0;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none; /* Hide scrollbar Firefox */
    }

    .needkitchenweb-services-sidebar-wrapper::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }

    .needkitchenweb-services-sidebar-card {
        padding: 12px 15px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    }

    .needkitchenweb-services-sidebar-title {
        display: none;
    }

    .needkitchenweb-services-sidebar-list {
        display: flex;
        flex-direction: row;
        padding: 0;
        margin: 0;
    }

    .needkitchenweb-services-sidebar-list::before {
        display: none;
    }

    .needkitchenweb-services-sidebar-item {
        padding-left: 0;
        margin-bottom: 0;
        margin-right: 15px;
        display: inline-block;
    }

    .needkitchenweb-services-sidebar-item:last-child {
        margin-right: 0;
    }

    .needkitchenweb-services-sidebar-item-bullet {
        display: none;
    }

    .needkitchenweb-services-sidebar-link {
        padding: 8px 16px;
        border-radius: 30px;
        border: 1px solid var(--needkitchenweb-border-gray);
        background-color: #FFFFFF;
        transition: var(--needkitchenweb-transition-smooth);
    }

    .needkitchenweb-services-sidebar-item-num {
        display: none;
    }

    .needkitchenweb-services-sidebar-item-name {
        font-size: 12px;
        font-weight: 700;
    }

    .needkitchenweb-services-sidebar-item.active .needkitchenweb-services-sidebar-link {
        background-color: var(--needkitchenweb-brand-red);
        border-color: var(--needkitchenweb-brand-red);
    }

    .needkitchenweb-services-sidebar-item.active .needkitchenweb-services-sidebar-item-name {
        color: #FFFFFF;
        transform: none;
    }

    .needkitchenweb-services-detail-section {
        padding: 30px;
        margin-bottom: 40px;
    }

    .needkitchenweb-services-detail-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .needkitchenweb-services-detail-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .needkitchenweb-services-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .needkitchenweb-services-graphic-wrapper {
        height: 180px;
        margin-top: 30px;
    }

    .needkitchenweb-services-detail-number-bg {
        font-size: 80px;
        right: 20px;
        top: 10px;
    }
}

/* Graphic hover keyframe animations */
@keyframes needkitchenweb-shake {
    0%, 100% { transform: rotate(0deg); }
    20%, 60% { transform: rotate(-8deg); }
    40%, 80% { transform: rotate(8deg); }
}

@keyframes needkitchenweb-draw {
    0%, 100% { transform: rotate(0deg) translate(0, 0); }
    30% { transform: rotate(12deg) translate(1px, -1px); }
    70% { transform: rotate(-12deg) translate(-1px, 1px); }
}

@keyframes needkitchenweb-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes needkitchenweb-wrench {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-25deg) translateY(-2px); }
}
/* ==========================================================================
   INFINITE Oman - Spare Parts Inner Page
   ========================================================================== */

.needkitchenweb-parts-page-hero {
    position: relative;
    padding: 190px 0 95px;
    color: #ffffff;
    background:
        linear-gradient(110deg, rgba(18, 18, 18, 0.96) 0%, rgba(18, 18, 18, 0.82) 48%, rgba(18, 18, 18, 0.64) 100%),
        url('../images/commercial-kitchen.webp') center/cover no-repeat;
    overflow: hidden;
}

.needkitchenweb-parts-page-hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.45;
}

.needkitchenweb-parts-page-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--needkitchenweb-brand-red);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.needkitchenweb-parts-page-title {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(42px, 5vw, 74px);
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
    color: #fff;
}

.needkitchenweb-parts-page-lead {
    max-width: 670px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.8;
}

.needkitchenweb-parts-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.needkitchenweb-parts-page-call,
.needkitchenweb-parts-page-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 4px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.8px;
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-parts-page-call:hover,
.needkitchenweb-parts-page-outline:hover {
    border-color: var(--needkitchenweb-brand-red);
    background: var(--needkitchenweb-brand-red);
    color: #ffffff;
}

.needkitchenweb-parts-page-stat-panel {
    display: grid;
    gap: 14px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.needkitchenweb-parts-page-stat-panel div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.needkitchenweb-parts-page-stat-panel div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.needkitchenweb-parts-page-stat {
    color: #ffffff;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.needkitchenweb-parts-page-stat-label {
    max-width: 140px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 800;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.needkitchenweb-parts-page-categories,
.needkitchenweb-parts-page-stock {
    padding: 95px 0;
    background: #f8f9fa;
}

.needkitchenweb-parts-page-section-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.needkitchenweb-parts-page-section-head h2 {
    margin: 12px 0 14px;
    color: var(--needkitchenweb-matte-black);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.needkitchenweb-parts-page-section-head p {
    margin: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}

.needkitchenweb-parts-page-card {
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--needkitchenweb-border-gray);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.04);
    transition: var(--needkitchenweb-transition-smooth);
}

.needkitchenweb-parts-page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.needkitchenweb-parts-page-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: saturate(0.92);
}

.needkitchenweb-parts-page-card-body {
    padding: 28px;
}

.needkitchenweb-parts-page-card-body i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    background: var(--needkitchenweb-brand-red-light);
    color: var(--needkitchenweb-brand-red);
    border-radius: 4px;
    font-size: 20px;
}

.needkitchenweb-parts-page-card-body h3 {
    margin-bottom: 12px;
    color: var(--needkitchenweb-matte-black);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.needkitchenweb-parts-page-card-body p {
    margin: 0;
    color: #666666;
    font-size: 14px;
    line-height: 1.75;
}

.needkitchenweb-parts-page-card-dark {
    display: flex;
    align-items: stretch;
    min-height: 100%;
    background: var(--needkitchenweb-matte-black);
    border-color: var(--needkitchenweb-matte-black);
}

.needkitchenweb-parts-page-card-dark .needkitchenweb-parts-page-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.needkitchenweb-parts-page-card-dark h3,
.needkitchenweb-parts-page-card-dark p {
    color: #ffffff;
}

.needkitchenweb-parts-page-card-dark p {
    color: rgba(255, 255, 255, 0.72);
}

.needkitchenweb-parts-page-card-dark a {
    margin-top: 22px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
}

.needkitchenweb-parts-page-process {
    padding: 95px 0;
    background: #ffffff;
}

.needkitchenweb-parts-page-process h2 {
    margin: 14px 0 18px;
    color: var(--needkitchenweb-matte-black);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
}

.needkitchenweb-parts-page-process p {
    color: #666666;
    font-size: 15px;
    line-height: 1.85;
}

.needkitchenweb-parts-page-link-btn {
    display: inline-flex;
    margin-top: 14px;
    color: var(--needkitchenweb-brand-red);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.8px;
}

.needkitchenweb-parts-page-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.needkitchenweb-parts-page-step {
    padding: 30px;
    background: #f8f9fa;
    border: 1px solid var(--needkitchenweb-border-gray);
    border-radius: 8px;
}

.needkitchenweb-parts-page-step span {
    display: block;
    margin-bottom: 22px;
    color: rgba(227, 27, 35, 0.22);
    font-size: 48px;
    font-weight: 900;
    line-height: 0.8;
}

.needkitchenweb-parts-page-step h3 {
    margin-bottom: 10px;
    color: var(--needkitchenweb-matte-black);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.needkitchenweb-parts-page-step p {
    margin: 0;
    color: #666666;
    font-size: 13.5px;
    line-height: 1.75;
}

.needkitchenweb-parts-page-stock-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.needkitchenweb-parts-page-stock-grid div {
    display: flex;
    min-height: 116px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 16px;
    background: #ffffff;
    border: 1px solid var(--needkitchenweb-border-gray);
    border-radius: 8px;
    text-align: center;
}

.needkitchenweb-parts-page-stock-grid i {
    color: var(--needkitchenweb-brand-red);
    font-size: 24px;
}

.needkitchenweb-parts-page-stock-grid span {
    color: var(--needkitchenweb-matte-black);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.35;
}

.needkitchenweb-parts-page-cta {
    padding: 0 0 95px;
    background: #f8f9fa;
}

.needkitchenweb-parts-page-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 48px;
    background: var(--needkitchenweb-matte-black);
    color: #ffffff;
    border-radius: 8px;
}

.needkitchenweb-parts-page-cta-box h2 {
    margin: 12px 0;
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
}

.needkitchenweb-parts-page-cta-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.needkitchenweb-parts-page-cta-actions {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 991px) {
    .needkitchenweb-parts-page-hero {
        padding: 155px 0 75px;
    }

    .needkitchenweb-parts-page-steps,
    .needkitchenweb-parts-page-stock-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .needkitchenweb-parts-page-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .needkitchenweb-parts-page-categories,
    .needkitchenweb-parts-page-process,
    .needkitchenweb-parts-page-stock {
        padding: 70px 0;
    }

    .needkitchenweb-parts-page-steps,
    .needkitchenweb-parts-page-stock-grid {
        grid-template-columns: 1fr;
    }

    .needkitchenweb-parts-page-stat-panel {
        padding: 22px;
    }

}

.needkitchenweb-parts-page-card-dark .needkitchenweb-parts-page-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.needkitchenweb-parts-page-card-dark h3,
.needkitchenweb-parts-page-card-dark p {
    color: #ffffff;
}

.needkitchenweb-parts-page-card-dark p {
    color: rgba(255, 255, 255, 0.72);
}

.needkitchenweb-parts-page-card-dark a {
    margin-top: 22px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
}

.needkitchenweb-parts-page-process {
    padding: 95px 0;
    background: #ffffff;
}

.needkitchenweb-parts-page-process h2 {
    margin: 14px 0 18px;
    color: var(--needkitchenweb-matte-black);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
}

.needkitchenweb-parts-page-process p {
    color: #666666;
    font-size: 15px;
    line-height: 1.85;
}

.needkitchenweb-parts-page-link-btn {
    display: inline-flex;
    margin-top: 14px;
    color: var(--needkitchenweb-brand-red);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.8px;
}

.needkitchenweb-parts-page-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.needkitchenweb-parts-page-step {
    padding: 30px;
    background: #f8f9fa;
    border: 1px solid var(--needkitchenweb-border-gray);
    border-radius: 8px;
}

.needkitchenweb-parts-page-step span {
    display: block;
    margin-bottom: 22px;
    color: rgba(227, 27, 35, 0.22);
    font-size: 48px;
    font-weight: 900;
    line-height: 0.8;
}

.needkitchenweb-parts-page-step h3 {
    margin-bottom: 10px;
    color: var(--needkitchenweb-matte-black);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.needkitchenweb-parts-page-step p {
    margin: 0;
    color: #666666;
    font-size: 13.5px;
    line-height: 1.75;
}

.needkitchenweb-parts-page-stock-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.needkitchenweb-parts-page-stock-grid div {
    display: flex;
    min-height: 116px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 16px;
    background: #ffffff;
    border: 1px solid var(--needkitchenweb-border-gray);
    border-radius: 8px;
    text-align: center;
}

.needkitchenweb-parts-page-stock-grid i {
    color: var(--needkitchenweb-brand-red);
    font-size: 24px;
}

.needkitchenweb-parts-page-stock-grid span {
    color: var(--needkitchenweb-matte-black);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.35;
}

.needkitchenweb-parts-page-cta {
    padding: 0 0 95px;
    background: #f8f9fa;
}

.needkitchenweb-parts-page-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 48px;
    background: var(--needkitchenweb-matte-black);
    color: #ffffff;
    border-radius: 8px;
}

.needkitchenweb-parts-page-cta-box h2 {
    margin: 12px 0;
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
    color: #fff;
}

.needkitchenweb-parts-page-cta-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.needkitchenweb-parts-page-cta-actions {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 991px) {
    .needkitchenweb-parts-page-hero {
        padding: 155px 0 75px;
    }

    .needkitchenweb-parts-page-steps,
    .needkitchenweb-parts-page-stock-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .needkitchenweb-parts-page-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .needkitchenweb-parts-page-categories,
    .needkitchenweb-parts-page-process,
    .needkitchenweb-parts-page-stock {
        padding: 70px 0;
    }

    .needkitchenweb-parts-page-steps,
    .needkitchenweb-parts-page-stock-grid {
        grid-template-columns: 1fr;
    }

    .needkitchenweb-parts-page-stat-panel {
        padding: 22px;
    }

    .needkitchenweb-parts-page-cta-box {
        padding: 32px 24px;
    }
}

/* About Page Mobile Optimizations */
@media (max-width: 991px) {
    .needkitchenweb-about-overlapping-card {
        margin-right: 0 !important;
        padding: 30px 20px;
    }
}

/* Global Dropdown Divider Border */
.needkitchenweb-dropdown-menu .dropdown-divider {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

/* Page Banner Background Images */
.needkitchenweb-about-page-banner {
    background-image: url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=1920&q=80') !important;
}
.needkitchenweb-contact-page-banner {
    background-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&w=1920&q=80') !important;
}

/* Animation Delay Utilities */
.needkitchenweb-delay-100 {
    animation-delay: 0.10s !important;
}
.needkitchenweb-delay-350 {
    animation-delay: 0.35s !important;
}

/* Heading Typography and Colors */
.needkitchenweb-about-values-section h2 {
    font-size: 32px;
    color: var(--needkitchenweb-matte-black);
    margin-top: 10px;
}
.needkitchenweb-sectors-section h2 {
    font-size: 32px;
    color: var(--needkitchenweb-matte-black);
}
.needkitchenweb-testimonial-section h2 {
    color: #222222;
    font-size: 36px;
}

/* Sector Card Background Images */
.needkitchenweb-sector-bg-kitchen {
    background-image: url('../images/commercial-kitchen.webp') !important;
}
.needkitchenweb-sector-bg-laundry {
    background-image: url('../images/commercial-laundry.webp') !important;
}
.needkitchenweb-sector-bg-bakery {
    background-image: url('../images/bakery-equipment.webp') !important;
}
.needkitchenweb-sector-bg-fabrication {
    background-image: url('../images/fabrication.webp') !important;
}
.needkitchenweb-sector-bg-supermarket {
    background-image: url('../images/supermarket-equpment.webp') !important;
}

/* ==========================================================================
   INFINITE Oman - Products Grid and Cards
   ========================================================================== */

/* â”€â”€ PRODUCT GRID â”€â”€ */
.inf-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

/* â”€â”€ PRODUCT CARD â”€â”€ */
.inf-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--inf-border);
    transition: transform 0.28s, box-shadow 0.28s;
    cursor: pointer;
    position: relative;
}
.inf-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: var(--inf-red);
}
.inf-product-card:hover .inf-product-img { transform: scale(1.06); }
.inf-product-img-wrap {
    overflow: hidden; background: #f9f9f9;
    aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
}
.inf-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
    transition: transform 0.4s ease;
    border-radius: 22px;
}
.inf-product-body { padding: 14px 16px 16px; }
.inf-product-name {
    font-size: 13.5px; font-weight: 700; color: var(--inf-dark);
    text-transform: uppercase; letter-spacing: 0.3px; line-height: 1.4;
    margin: 0 0 10px;
}
.inf-product-badge {
    display: inline-block; font-size: 11px; padding: 3px 10px;
    border-radius: 20px; font-weight: 600; background: rgba(227,27,35,0.1);
    color: var(--inf-red); text-transform: uppercase; letter-spacing: 0.4px;
}
.inf-product-enquire {
    display: flex; align-items: center; gap: 6px;
    margin-top: 12px; font-size: 12px; font-weight: 600;
    color: #888; text-transform: uppercase; letter-spacing: 0.5px;
}
.inf-product-enquire i { font-size: 11px; }
.inf-product-card:hover .inf-product-enquire { color: var(--inf-red); }

/* â”€â”€ NO RESULTS â”€â”€ */
.inf-no-results { text-align: center; padding: 80px 20px; display: none; }
.inf-no-results i { font-size: 52px; color: #ccc; margin-bottom: 16px; display: block; }
.inf-no-results h3 { color: #555; font-weight: 700; }
.inf-no-results p { color: #999; }

/* â”€â”€ FLOATING CTA â”€â”€ */
.inf-float-cta {
    position: fixed; bottom: 30px; right: 30px; z-index: 200;
    background: var(--inf-red); color: #fff;
    padding: 14px 24px; border-radius: 50px;
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
    text-decoration: none; display: flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 24px rgba(227,27,35,0.45);
    transition: transform 0.25s, box-shadow 0.25s;
}
.inf-float-cta:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 14px 32px rgba(227,27,35,0.55); }

/* â”€â”€ BREADCRUMB RED CHEVRON â”€â”€ */
.needkitchenweb-products-breadcrumb-separator {
    color: var(--inf-red) !important;
}

/* â”€â”€ SEARCH BAR INTEGRATION â”€â”€ */
.needkitchenweb-search-bar {
    padding: 0 0 50px;
}
.needkitchenweb-search-wrap {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}
.needkitchenweb-search-wrap input {
    width: 100%;
    border: 1px solid var(--inf-border);
    border-radius: 50px;
    padding: 14px 50px 14px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.needkitchenweb-search-wrap input:focus {
    border-color: var(--inf-red);
    box-shadow: 0 8px 25px rgba(227,27,35,0.08);
}
.needkitchenweb-search-wrap i {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--inf-red);
    font-size: 16px;
}

/* â”€â”€ CATEGORY SECTION TITLES â”€â”€ */
.needkitchenweb-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}
.needkitchenweb-category-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--inf-red), #b81218);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(227, 27, 35, 0.15);
}
.needkitchenweb-category-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--inf-dark);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.needkitchenweb-category-count {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    margin: 4px 0 0;
}
.needkitchenweb-category-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.needkitchenweb-category-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 768px) {
    .inf-product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
}

/* â”€â”€ BRAND LOGOS â”€â”€ */
.needkitchenweb-partner-logo-img {
    max-height: 48px;
    width: 100%;
    max-width: 130px;
    object-fit: contain;
    background-color: #FFFFFF;
    padding: 6px 10px;
    border-radius: 6px;
    opacity: 0.85;
    transition: var(--needkitchenweb-transition-smooth);
    display: block;
    margin: 0 auto;
}

.needkitchenweb-partner-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}


/* â”€â”€ INIFINITE BRAND SLIDER â”€â”€ */
.infinite-brands-section {
    background-color: #fcfcfc;
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.brand-slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 10px 0 20px 0;
}
.brand-slider-track-wrapper {
    width: 100%;
    overflow: hidden;
}
.brand-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}
.brand-slide-item {
    flex: 0 0 16.666%; /* 6 items on desktop */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    box-sizing: border-box;
}
.brand-slide-item img {
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.75;
}
.brand-slide-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}
.brand-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}
.brand-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, width 0.3s ease;
    padding: 0;
}
.brand-slider-dot.active {
    background-color: #e31b23;
    width: 20px;
    border-radius: 4px;
}

/* Responsive grid for slides */
@media (max-width: 1200px) {
    .brand-slide-item {
        flex: 0 0 20%; /* 5 items */
    }
}
@media (max-width: 992px) {
    .brand-slide-item {
        flex: 0 0 25%; /* 4 items */
    }
}
@media (max-width: 768px) {
    .brand-slide-item {
        flex: 0 0 33.333%; /* 3 items */
    }
}
@media (max-width: 576px) {
    .brand-slide-item {
        flex: 0 0 50%; /* 2 items */
    }
}
