@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
    --navy: hsl(225, 73%, 18%);
    --navy-light: hsl(225, 60%, 25%);
    --navy-deep: hsl(225, 80%, 12%);
    --accent: #F3921F;
    --accent-hover: #D37A1A;
    --royal: #2C3E50;
    --white: #ffffff;
    --off-white: hsl(210, 20%, 98%);
    --shell: hsl(30, 30%, 96%);
    --glass: rgba(255, 255, 255, 0.08);
    --glass-dark: rgba(12, 18, 32, 0.85);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-full: 9999px;
    --container-max: 1400px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

*,
::before,
::after {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.stat-item {
    display: inline-flex;
    gap: 5px;
    justify-content: space-between;
}

.product-content {
    padding: 3%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-content .mt-1 {
    margin-top: auto !important;
}

::selection {
    background: var(--accent);
    color: var(--white);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    font-family: var(--font-sans);
    color: var(--navy-deep);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 700;
}

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

.container {
    max-width: var(--container-max);
    margin: 0px auto;
    padding: 0px 1rem;
}

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

.section-padding {
    padding: 1rem 0px;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 40px 0px;
    }
}

section:not(.swiper),
.category-card,
.value-card,
.presence-card,
.loc-card {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.revealed {
    opacity: 1 !important;
    transform: translateY(0px) !important;
}

section {
    scroll-margin-top: 100px;
}

.top-bar {
    background: var(--off-white);
    padding: 0.6rem 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

.top-info {
    display: flex;
    gap: 2.5rem;
}

.top-info a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--navy-deep);
    font-weight: 500;
    opacity: 0.7;
}

.top-info a:hover {
    color: var(--accent);
    opacity: 1;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

nav {
    position: sticky;
    top: 0px;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0px;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: 0.4s;
}

nav.scrolled {
    padding: 0.8rem 0px;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 30px;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--navy-deep);
    font-weight: 700;
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

.brand img {
    height: 44px;
    object-fit: contain;
}

.nav-links .menu-header {
    display: none !important;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links li {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--accent);
    opacity: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-cta {
    /* Styles merged into global button styles below */
}

.dropdown,
.submenu,
.sub-submenu {
    position: absolute;
    top: 100%;
    left: 0px;
    background: var(--white);
    min-width: 260px;
    padding: 0.8rem 0px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

.submenu,
.sub-submenu {
    top: 0px;
    left: 100%;
    transform: translateX(15px);
}

.dropdown::before,
.submenu::before,
.sub-submenu::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background: transparent;
    z-index: -1;
}

.dropdown::before {
    top: -20px;
    left: 0px;
    width: 100%;
    height: 20px;
}

.submenu::before,
.sub-submenu::before {
    top: 0px;
    left: -20px;
    width: 20px;
    height: 100%;
}

.has-dropdown:hover>.dropdown,
.has-submenu:hover>.submenu,
.has-sub-submenu:hover>.sub-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) translateX(0px);
}

/* ==========================================================================
   MEGA MENU STYLES (4-Column Dropdown matching design reference)
   ========================================================================== */
.mega-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    transform: translateX(-50%) translateY(15px) !important;
    background: var(--white) !important;
    width: 1200px !important;
    max-width: 95vw !important;
    padding: 1rem !important;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.18) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 1000 !important;
    pointer-events: none;
    max-height: 450px;
    overflow-y: auto;
}

.has-dropdown:hover>.mega-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-44%) translateY(0px) !important;
    pointer-events: auto;
}

.mega-dropdown-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 1rem !important;
}

.mega-column {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

@media (min-width: 1025px) {
    .mega-column summary {
        pointer-events: none !important;
        cursor: default !important;
        list-style: none !important;
    }

    .mega-column summary::-webkit-details-marker,
    .mega-column summary::marker {
        display: none !important;
        content: "" !important;
    }
}

.mega-title {
    color: var(--accent) !important;
    font-family: var(--font-sans) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    border-bottom: 1px solid var(--accent) !important;
    padding-bottom: 0.6rem !important;
    margin-bottom: 1rem !important;
    letter-spacing: 0.5px !important;
    width: 100% !important;
    text-align: left !important;
    display: block !important;
    list-style: none !important;
}

.mega-title a {
    font-size: inherit !important;
    font-weight: inherit !important;
    font-family: inherit !important;
    color: inherit !important;
    text-transform: inherit !important;
    text-decoration: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mega-title::-webkit-details-marker,
.mega-title::marker {
    display: none !important;
    content: "" !important;
}

.mega-list {
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

.mega-list li {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    position: relative !important;
}

.mega-list li a {
    color: var(--navy-deep) !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: block !important;
    padding: 0px !important;
    background: transparent !important;
    text-align: left !important;
    opacity: 0.85 !important;
    border-radius: 0 !important;
}

.mega-list li a:hover {
    color: var(--accent) !important;
    opacity: 1 !important;
    transform: translateX(6px) !important;
    background: transparent !important;
}

@media (max-width: 1024px) {
    .nav-links li {
        width: 100%;
        display: block;
        height: auto;
    }

    .nav-links a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 0px;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--navy-deep);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .dropdown,
    .submenu,
    .sub-submenu {
        display: none;
        position: static !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        background: transparent !important;
        padding-left: 0px !important;
        transform: none !important;
        min-width: unset !important;
    }

    .mega-dropdown,
    .has-dropdown:hover>.mega-dropdown,
    .nav-links li.active>.mega-dropdown {
        display: none;
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0.5rem 0px !important;
        transform: none !important;
        left: 0 !important;
        min-width: unset !important;
    }

    .dropdown::before,
    .submenu::before,
    .sub-submenu::before {
        display: none;
    }

    .nav-links li.active>.dropdown,
    .nav-links li.active>.submenu,
    .nav-links li.active>.sub-submenu,
    .nav-links li.active>.mega-dropdown {
        display: block !important;
    }

    .dropdown a,
    .submenu a,
    .sub-submenu a {
        border-left: 2px solid rgba(0, 0, 0, 0.05);
        margin-left: 0rem;
        padding: 0.6rem 1rem !important;
        font-weight: 500 !important;
    }

    /* Mobile specific mega-dropdown spacing */
    .mega-dropdown-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        padding: 0.5rem 0 1rem 0.5rem !important;
    }

    .mega-column {
        display: block !important;
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }

    .mega-column summary {
        pointer-events: auto !important;
        cursor: pointer !important;
    }

    .mega-column:not([open]) .mega-list {
        display: none !important;
    }

    .mega-column[open] .mega-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        animation: slideDownFade 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        transform-origin: top;
        padding-bottom: 1rem !important;
    }

    .mega-title {
        font-size: 1.05rem !important;
        color: var(--navy-deep) !important;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.1) !important;
        padding: 0.8rem 0 !important;
        margin: 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        cursor: pointer !important;
        user-select: none !important;
        pointer-events: auto !important;
    }

    .mega-title::-webkit-details-marker,
    .mega-title::marker {
        display: none !important;
    }

    /* Custom rotating chevron for mobile accordion */
    .mega-title::after {
        content: "";
        display: inline-block;
        width: 6px;
        height: 6px;
        border-right: 2px solid var(--accent);
        border-bottom: 2px solid var(--accent);
        transform: rotate(45deg);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        margin-left: auto;
    }

    .mega-column[open] .mega-title::after {
        transform: rotate(-135deg);
    }

    @keyframes slideDownFade {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }

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

    .mega-list li a {
        display: block !important;
        text-align: left !important;
        width: 100% !important;
        font-size: 0.95rem !important;
        padding: 0.75rem 1rem !important;
        color: #555 !important;
        border-bottom: none !important;
        border-radius: 8px;
    }

    .mega-list li a:hover {
        transform: translateX(4px) !important;
        padding-left: 1rem !important;
        color: var(--accent) !important;
        background: rgba(239, 133, 53, 0.05) !important;
    }

    .nav-links li .has-dropdown>a,
    .nav-links li .has-submenu>a {
        padding-right: 0.5rem !important;
    }
}

.dropdown a,
.submenu a,
.sub-submenu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.8rem;
    color: var(--navy-deep);
    font-size: 0.9rem;
    font-weight: 600;
}

.dropdown a:hover,
.submenu a:hover,
.sub-submenu a:hover {
    background: var(--off-white);
    color: var(--accent);
}

.nav-cta {
    /* Styles merged into global button styles below */
}

.heroSwiper {
    /* height: 100vh; */
}

.heroSwiper .swiper-slide {
    display: flex;
    align-items: center;
}

.hero-bg {
    width: 100%;
    /* position: absolute; */
    /* inset: 0px; */
    /* z-index: 0; */
}

.hero-bg picture,
.hero-bg img {
    display: block;
    width: 100%;
    height: auto !important;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0px;
    background: linear-gradient(to right, rgba(12, 18, 32, 0.95) 0%, rgba(12, 18, 32, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-content h1 i {
    color: var(--accent);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* gap: 0.6rem; */
    /* padding: 0.8rem 1.8rem; */
    background: var(--accent);
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    color: var(--white) !important;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: rgba(249, 115, 22, 0.25) 0px 10px 20px;
    filter: brightness(1.1);
}

.section-header {
    margin-bottom: 0.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-flow: column wrap;
    gap: 0rem;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.section-header span {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.categorySwiper {
    padding-bottom: 2rem !important;
}

/* Ensure all slides in product/category carousels are equal height */
.categorySwiper .swiper-slide,
.productSwiper .swiper-slide {
    height: auto;
}

.category-card {
    position: relative;
    height: 301px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.category-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.sub-title {
    display: block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.category-info {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgb(243 146 31 / 20%);
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 30px 60px -15px;
    border-color: rgba(243, 146, 31, 0.2);
}

.product-main-img {
    width: 100%;
    object-fit: contain;
    aspect-ratio: 3/3;
    object-position: center;
    height: 100%;
}

.btn-primary,
.btn-secondary,
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    min-width: 140px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Shine effect on hover */
.btn-primary::after,
.btn-secondary::after,
.nav-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-primary:hover::after,
.btn-secondary:hover::after,
.nav-cta:hover::after {
    left: 100%;
}

/* Icon hover animation */
.btn-primary svg,
.btn-secondary svg,
.btn-primary i,
.btn-secondary i,
.nav-cta svg,
.nav-cta i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover svg,
.btn-secondary:hover svg,
.btn-primary:hover i,
.btn-secondary:hover i,
.nav-cta:hover svg,
.nav-cta:hover i {
    transform: translateX(4px) scale(1.1);
}

.btn-primary,
.btn-secondary,
.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    box-shadow: 0 4px 14px 0 rgba(243, 146, 31, 0.39);
}

.btn-primary:hover,
.btn-secondary:hover,
.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(243, 146, 31, 0.3);
}

.product-thumbs {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.product-thumb {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 16px;
    background-size: cover;
    background-position: center center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
    aspect-ratio: 1 / 1;
}

@media (max-width: 768px) {
    .product-content {
        padding: 1.25rem 1rem;
    }

    .product-thumb {
        width: 1.2rem !important;
        height: 1.2rem !important;
        border-radius: 8px;
    }

    .product-thumbs {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
}

.product-thumb:hover {
    transform: scale(1.1);
}

.product-thumb.active {
    border-color: rgb(59, 130, 246);
    box-shadow: rgba(59, 130, 246, 0.2) 0px 4px 12px;
}

.product-content h3 {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--navy-deep);
}

.product-content h3 span {
    opacity: 0.4;
    font-weight: 400;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .product-content h3 {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 0.9rem;
        padding: 1rem !important;
        min-height: auto !important;
    }

    .product-content h3 span {
        font-size: 0.75rem;
    }
}

.product-desc {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    min-height: 3.2em;
    display: none;
}

.product-stats {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 0.55rem;
    margin-top: auto;
    flex-direction: column;
}

.stat-item p:first-child {
    font-size: 0.75rem;
    text-transform: capitalize;
    opacity: 0.4;
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.stat-item p:last-child {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--navy-deep);
}

.whySwiper,
.productSwiper,
.categorySwiper {
    margin-top: 1rem;
    position: relative;
    padding-bottom: 1.5rem !important;
}

.why-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin: 0px auto 2rem;
    transition: 0.3s;
}

.why-card:hover .why-icon {
    background: var(--accent);
    color: var(--white);
}

.why-card h4 {
    color: var(--navy-deep);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.why-card p {
    flex-grow: 1;
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.7;
}

.career-section {
    padding: 1rem 0px;
}

.career-banner-card {
    position: relative;
    background: var(--navy-deep);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 3rem 1rem;
    text-align: center;
    color: var(--white);
}

.career-bg-overlay {
    position: absolute;
    inset: 0px;
    background-image: url("./images/hero-1.jpg");
    background-size: cover;
    background-position: center center;
    opacity: 0.15;
    z-index: 0;
}

.career-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0px auto;
}

.career-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.career-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.contact-cta {
    margin-top: 3rem;
    text-align: center;
}

.contact-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.stats-banner {
    background: var(--navy-deep);
    color: var(--white);
    padding: 4rem 0px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1rem;
    }
}

.stat-box h3 {
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

@media (max-width: 640px) {
    .stat-box h3 {
        font-size: 2.5rem;
    }

    .stat-box p {
        font-size: 0.9rem;
    }
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 1.5rem;
}

.loc-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--off-white);
    border-radius: var(--radius-lg);
}

.loc-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.loc-card h4 {
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-image-badge {
        display: none;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    z-index: -1;
}

.about-text span {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

.about-text h2 {
    font-size: 2rem;
    margin: 0rem 0px 1rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--navy-light);
    margin-bottom: 2rem;
}

#ai-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transition: transform 0.3s, background 0.3s;
}

#ai-chat:hover {
    transform: scale(1.1);
    background: var(--accent-hover);
}

.nav-links.active~#ai-chat {
    opacity: 0;
    visibility: hidden;
}

footer {
    background-color: var(--navy-deep);
    color: var(--white);
    padding: 80px 0px 20px;
    position: relative;
    overflow: hidden;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

.footer-brand p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: var(--white);
    opacity: 0.9;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.footer-bottom {
    padding: 0.5rem 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgb(255, 255, 255);
}

.footer-bottom a {
    color: var(--white);
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        margin-bottom: 0rem;
    }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: fixed;
        right: -100%;
        top: 0px;
        width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 1.5rem 2rem 3rem;
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1500;
        box-shadow: -15px 0 30px rgba(0, 0, 0, 0.08);
        gap: 0;
        overflow-y: auto;
        /* Enable vertical scrolling */
        -webkit-overflow-scrolling: touch;
        /* Enable smooth scrolling on touch screens */
    }

    .menu-header {
        display: flex;
        justify-content: flex-start;
        padding-bottom: 1rem;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .close-menu {
        padding: 0;
        width: 40px;
        height: 40px;
        background: #f5f5f5 !important;
        border-radius: 50% !important;
        color: var(--navy-deep);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        appearance: none;
        border: none !important;
        outline: none !important;
        margin-left: auto;
        margin-bottom: 1rem;
        transition: background 0.2s ease;
    }

    .close-menu svg {
        stroke: var(--navy-deep);
        width: 20px;
        height: 20px;
    }

    .nav-links.active {
        display: flex;
        right: 0px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 18px;
        cursor: pointer;
        position: relative;
        z-index: 999999999;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2.5px;
        background: var(--navy-deep);
        border-radius: 4px;
        transition: 0.3s;
    }

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

    .brand {
        font-size: 1.25rem;
    }
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent) !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent) !important;
}

.swiper-pagination {
    bottom: 0px !important;
}

.product-pagination,
.category-pagination,
.why-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 2rem !important;
}

#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

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

#back-to-top:hover {
    background: var(--navy-deep);
    color: var(--white);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .section-padding {
        padding: 1rem 0px;
    }

    .career-content h2 {
        font-size: 2.5rem;
    }
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mt-6 {
    margin-top: 6rem;
}

.mt-7 {
    margin-top: 7rem;
}

.mt-8 {
    margin-top: 8rem;
}

.mt-9 {
    margin-top: 9rem;
}

.mt-10 {
    margin-top: 10rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mb-6 {
    margin-bottom: 6rem;
}

.mb-7 {
    margin-bottom: 7rem;
}

.mb-8 {
    margin-bottom: 8rem;
}

.mb-9 {
    margin-bottom: 9rem;
}

.mb-10 {
    margin-bottom: 10rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.contact-form-header h3 {
    font-size: 2rem;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .contact-form-header h3 {
        font-size: 1.6rem;
    }
}

.contact-form-header p {
    opacity: 0.7;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.modal-content {
    background: var(--white);
    width: 92%;
    max-width: 600px;
    padding: 2rem 1.8rem;
    border-radius: var(--radius-lg);
    position: relative;
    max-height: 95vh;
    overflow-y: scroll;
    scrollbar-width: none;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 40px 100px -20px;
    border-top: 4px solid var(--accent);
}

.modal-content::-webkit-scrollbar {
    display: none;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy-deep);
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    transition: 0.3s;
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: rgba(249, 115, 22, 0.1) 0px 0px 0px 3px;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

.modal-overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5000;
}

.modal-overlay.active {
    display: flex;
}

#back-to-top {
    display: flex;
}

@media (max-width: 1024px) {
    #back-to-top {
        display: none !important;
    }
}

.modal-content {
    background: var(--white);
    width: 92%;
    max-width: 600px;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    max-height: 85vh;
    overflow-y: scroll;
    scrollbar-width: none;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 40px 100px -20px;
    border-top: 4px solid var(--accent);
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background: var(--white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px -5px 25px;
    z-index: 4000;
    padding: 0.8rem 0px;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.bottom-nav-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: var(--navy-deep);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.6;
    transition: 0.3s;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    opacity: 1;
    color: var(--accent);
}

.bottom-nav-item svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 1024px) {
    .mobile-bottom-nav {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }
}

.modal-content::-webkit-scrollbar {
    display: none;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: var(--navy-deep);
    cursor: pointer;
    padding: 8px;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

@media (max-width: 1024px) {
    #navbar {
        height: fit-content;
        padding: 10px 0px;
    }

    .nav-container {
        height: 100%;
    }

    .section-padding {
        padding: 3rem 0px;
    }

    .page-banner {
        padding: 4rem 0px 3rem;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }

    .card,
    .product-card,
    .category-card {
        border-radius: 24px;
    }

    .bottom-nav-item:nth-child(3) {
        background: var(--navy-deep);
        color: var(--white);
        width: 65px;
        height: 65px;
        border-radius: 50%;
        margin-top: -30px;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 20px;
        opacity: 1;
        justify-content: center;
        border: 4px solid var(--white);
    }

    .bottom-nav-item:nth-child(3).active,
    .bottom-nav-item:nth-child(3):hover {
        color: var(--accent);
    }
}

.modal-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.2rem;
        max-height: 92vh;
        width: 95%;
        border-radius: 30px;
    }

    .hero {
        /* border-bottom-left-radius: 40px; */
        /* border-bottom-right-radius: 40px; */
        overflow: hidden;
        /* height: 80vh !important; */
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .section-padding {
        padding: 2% 0px;
    }

    .product-details-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .main-product-image {
        border-radius: 30px;
        overflow: hidden;
        height: 350px !important;
    }

    .product-info-column {
        padding: 0px 0.5rem;
    }
}

.page-banner {
    padding: 4rem 0px;
    color: var(--white);
    background-image: linear-gradient(rgba(12, 18, 32, 0.8), rgba(12, 18, 32, 0.8)), url("./images/hero-2.jpg");
    background-size: cover;
    background-position: center center;
    text-align: center;
}

.page-banner h1 {
    font-size: 2rem;
    margin-bottom: 0rem;
}

.page-banner h1 span {
    color: var(--accent);
}

.page-banner p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.value-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}

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

.process-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.4s;
    text-align: center;
    position: relative;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.process-step {
    font-size: 3rem;
    font-weight: 900;
    color: var(--off-white);
    position: absolute;
    top: 1rem;
    left: 1rem;
    line-height: 1;
    z-index: 0;
}

.process-card h4 {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--navy-deep);
}

.process-card p {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    opacity: 0.8;
}

.products-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

.sidebar-filter {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 100px;
}

@media (max-width: 1024px) {
    .products-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filter-toggle-btn {
        display: inline-flex !important;
        align-items: center;
        gap: 0.5rem;
        background: var(--white);
        border: 1px solid rgba(0, 0, 0, 0.1);
        padding: 0.75rem 1.25rem;
        border-radius: 12px;
        font-weight: 600;
        cursor: pointer;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .sidebar-filter {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        z-index: 1000;
        margin: 0;
        border-radius: 0;
        display: block;
        transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
        padding: 2rem 1.5rem;
        overflow-y: auto;
    }

    .sidebar-filter.active {
        left: 0;
    }

    .sidebar-filter .close-filter-btn {
        display: block !important;
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--navy-deep);
    }

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

.filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-overlay.active {
    display: block;
    opacity: 1;
}

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

.filter-group h4 {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--off-white);
}

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

.filter-list li {
    margin-bottom: 0.8rem;
}

.filter-list label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: 0.3s;
}

.filter-list label:hover {
    opacity: 1;
    color: var(--accent);
}

.filter-list input[type="checkbox"] {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 0.5rem;
    }

    .product-card {
        border-radius: 16px;
    }

    .product-content h3 {
        font-size: 0.8rem;
    }

    .product-desc {
        display: none;
    }

    .product-stats {
        display: flex;
        flex-direction: column;
        /* flex-wrap: wrap; */
        gap: 5px;
    }

    .product-main-img {}
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 991px) {
    .product-details-grid {
        grid-template-columns: 1fr;
    }
}

.zoomer-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
}

.zoomer-main-box {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    cursor: crosshair;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
    .zoomer-main-box {
        height: 380px;
        border-radius: 24px;
    }
}

.zoomer-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s ease-out;
}

.zoomer-thumbs {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.zoomer-thumb {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.zoomer-thumb:hover {
    transform: scale(1.05);
}

.zoomer-thumb.active {
    border-color: var(--accent);
}

.zoomer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-box h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .product-info-box h1 {
        font-size: 2rem;
    }

    .zoomer-thumbs {
        gap: 0.8rem;
    }

    .zoomer-thumb {
        width: 3rem;
        height: 3rem;
    }
}

.product-sku {
    display: inline-block;
    background: var(--off-white);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.product-spec-table {
    width: 100%;
    margin: 2.5rem 0px;
    border-collapse: collapse;
}

.product-spec-table td {
    padding: 1% 0px;
    border-bottom: 1px solid var(--off-white);
}

.product-spec-table td:first-child {
    font-weight: 700;
    color: var(--navy-deep);
    width: 40%;
}

.product-spec-table td:last-child {
    opacity: 0.7;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-grid .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--navy-deep);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.8rem;
    transition: 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: rgba(243, 146, 31, 0.1) 0px 0px 15px;
}

.form-textarea {
    min-height: 200px;
    resize: vertical;
}

.legal-content {
    max-width: 900px;
    margin: 0px auto;
}

.legal-content h3 {
    margin: 2.5rem 0px 1.2rem;
    font-size: 1.8rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.career-listing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .career-listing-grid {
        margin-top: 1.5rem;
    }
}

.job-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.4s;
}

.job-card:hover {
    transform: translateX(10px);
    border-left: 5px solid var(--accent);
}

.job-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0rem;
    }
}

.hero-pagination {
    bottom: 40px !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 7px;
    /* height: 7px; */
    background: #00000036;
    /* border: 2px solid rgba(255, 255, 255, 0.4); */
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0 2px !important;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(243, 146, 31, 0.5);
}


/* Restored hero arrows */

.hero-next {
    /* right: 40px !important; */
}

.hero-prev {
    /* left: 40px !important; */
}



@media (max-width: 768px) {

    .hero-next,
    .hero-prev {
        width: 45px;
        height: 45px;
        /* display: none !important; */
        /* Hide on mobile for cleaner look, or make smaller */
    }

    .swiper-pagination {
        position: relative !important;
        bottom: auto !important;
        margin-top: 1rem;
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        display: flex;
        justify-content: center;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        /* width: 25px; */
    }
}

/* --- Additional Premium Mobile Touches --- */
@media (max-width: 1024px) {
    #navbar.scrolled {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(15px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    }

    .section-header h2 {
        background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-light) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .product-card {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .product-content h3 {
        font-size: 1.1rem;
        font-weight: 800;
    }

    .product-thumb {
        width: 35px;
        height: 35px;
        border-radius: 10px;
    }

    .category-info {
        padding: 1.5rem 1rem;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    }

    .category-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.2rem;
    }

    .category-info p {
        font-size: 0.85rem;
        opacity: 0.9;
        line-height: 1.4;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        min-height: 48px;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        /* background: #0000008a !important; */
    }

    .swiper-pagination-bullet-active {
        width: 24px;
        border-radius: 4px;
    }
}

@media (max-width: 360px) {
    .brand {
        font-size: 1.1rem;
    }

    .bottom-nav-item span {
        font-size: 9px;
    }
}

/* --- Mobile Quick Links Utility --- */
.hide-desktop {
    display: none;
}

@media (max-width: 1024px) {
    .hide-desktop {
        display: block;
    }

    .mobile-quick-links {
        padding: 1.5rem 0;
        background: var(--off-white);
        margin-top: -30px;
        position: relative;
        z-index: 10;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .mobile-grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        text-align: center;
    }

    .quick-link-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: var(--navy-deep);
        transition: 0.3s;
    }

    .ql-icon {
        width: 50px;
        height: 50px;
        background: var(--white);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .quick-link-item span {
        font-size: 0.75rem;
        font-weight: 700;
    }

    .hero-content {
        padding: 0 1.5rem;
        text-align: center;
        width: 100%;
    }

    .hero-content span {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
        display: block;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        opacity: 0.8;
        margin-bottom: 1.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-btns {
        display: flex;
        gap: 10px;
        justify-content: center;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        min-height: auto;
    }
}

@media (max-width: 1024px) {
    .hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%); */
        z-index: 1;
    }

    .hero-content {
        z-index: 2;
        bottom: 10%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-content h1 {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        color: #fff !important;
    }

    .hero-content p {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .ql-icon i {
        font-size: 1.2rem;
    }

    /* Pulsing animation for Enquire icon on mobile */
    .quick-link-item:last-child .ql-icon {
        animation: pulse-glow 2s infinite;
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 146, 31, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(243, 146, 31, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(243, 146, 31, 0);
    }
}

/* UI Fixes for Mobile Overlap */
@media (max-width: 1024px) {
    .product-showcase {
        padding-bottom: 1rem !important;
    }

    /* Fix overlapping View All button */
    .product-showcase center {
        display: block;
        margin-top: 3.5rem !important;
        padding-bottom: 1rem;
    }

    /* Ensure pagination dots are visible but not touching button */
    .product-pagination {
        margin-bottom: 0.5rem !important;
    }
}

/* --- Attractive Navigation Arrows --- */
.swiper-button-next,
.swiper-button-prev {
    width: 45px !important;
    height: 45px !important;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Hide Swiper 11 injected SVG arrows to prevent double arrows with ::after content */
.swiper-button-next svg,
.swiper-button-prev svg {
    display: none !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem !important;
    font-weight: 900 !important;
    color: var(--accent) !important;
}

.swiper-button-next:hover,
/* --- Premium Swiper Navigation --- */
.swiper-button-next,
.swiper-button-prev {
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    color: var(--accent) !important;
    /* SVG inherits this color */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    /* background: var(--accent) !important; */
    /* border-color: var(--accent) !important; */
    color: var(--white) !important;
    /* transform: scale(1.1) translateY(0) !important; */
    /* box-shadow: 0 8px 25px rgba(243, 146, 31, 0.4) !important; */
}

.swiper-button-next:active,
.swiper-button-prev:active {
    /* transform: scale(0.95) !important; */

}

.swiper-button-next:focus,
.swiper-button-prev:focus {
    outline: none !important;
}

/* Positioning for Different Swipers */
.hero-next,
.hero-prev {
    top: 50% !important;
}

.hero-next {
    right: 30px !important;
}

.hero-prev {
    left: 30px !important;
}

.product-next,
.product-prev,
.category-next,
.category-prev {
    top: 38% !important;
}

.product-next,
.category-next {
    /* right: -10px !important; */
}

.product-prev,
.category-prev {
    /* left: -10px !important; */
}

/* Mobile refinement */
@media (max-width: 768px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 38px !important;
        height: 38px !important;
        background: rgb(255 255 255) !important;
        border-width: 1px !important;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 0.9rem !important;
    }

    .hero-next {
        right: 15px !important;
    }

    .hero-prev {
        left: 15px !important;
    }

    /* Clean up mobile view for smaller sliders */
    .productSwiper .swiper-button-next,
    .productSwiper .swiper-button-prev,
    .categorySwiper .swiper-button-next,
    .categorySwiper .swiper-button-prev {
        display: none !important;
    }
}

.mobile-bottom-nav {
    display: none;
}

/* ==========================================================================
   SKELETON LOADER UI SYSTEM
   ========================================================================== */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.skeleton-shimmer {
    background: linear-gradient(90deg, #f0f3f6 25%, #e1e6eb 50%, #f0f3f6 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite ease-in-out;
}

/* Skeleton Containers */
.skeleton-container {
    display: block;
    width: 100%;
}

.skeleton-container.hidden {
    display: none !important;
}

/* Skeleton Card Structure (Mimicking .product-card exactly) */
.skeleton-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(243, 146, 31, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.skeleton-img-placeholder {
    width: 100%;
    aspect-ratio: 3/2;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.skeleton-content {
    padding: 3%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.skeleton-thumbs-row {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.skeleton-thumb-placeholder {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
}

.skeleton-title-placeholder {
    width: 70%;
    height: 1.25rem;
    margin-bottom: 0.8rem;
    border-radius: var(--radius-sm);
}

.skeleton-desc-placeholder {
    width: 100%;
    height: 0.85rem;
    margin-bottom: 0.5rem;
    border-radius: var(--radius-sm);
}

.skeleton-desc-placeholder.short {
    width: 85%;
    margin-bottom: 1.2rem;
}

.skeleton-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.2rem;
    background: var(--off-white);
    padding: 10px;
    border-radius: var(--radius-sm);
}

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

.skeleton-stat-label {
    width: 25%;
    height: 0.75rem;
    border-radius: 4px;
}

.skeleton-stat-value {
    width: 45%;
    height: 0.75rem;
    border-radius: 4px;
}

.skeleton-btn-placeholder {
    width: 100%;
    height: 40px;
    border-radius: 16px;
    margin-top: auto;
}

/* Smooth Fade/Hydration Class Transitions */
.fade-transition {
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1;
    transform: translateY(0);
}

.fade-transition.fade-out {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.fade-transition.fade-in {
    opacity: 0;
    transform: translateY(-10px);
}

.fade-transition.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {

    .skeleton-content,
    .page-banner {
        padding: 1.25rem 1rem;
    }

    .skeleton-thumb-placeholder {
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 8px;
    }

    .skeleton-thumbs-row {
        gap: 0.5rem;
        margin-bottom: 0.6rem;
    }
}