html {
    scroll-behavior: smooth;
}

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

:root {
    --primary-red: #D32F2F;
    --dark: #000000;
    --grey-100: #F8F9FA;
    --grey-200: #F0F0F0;
    --grey-300: #E0E0E0;
    --text-dark: #333333;
    --text-muted: #666666;
    --header-width: 1350px;
    --transition: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.5;
    overflow-x: hidden;
    margin: 0 !important;
    padding-top: 145px; /* Clear shorter floating fixed header height on desktop */
}

main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--header-width);
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Glassmorphic Floating Header Redesign */
header {
    width: 95%;
    max-width: var(--header-width);
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 15px;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrolled Compact Header State */
header.scrolled {
    width: 100%;
    max-width: 100%;
    top: 0;
}

header.scrolled .header-container {
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(211, 47, 47, 0.04);
    background: rgba(255, 255, 255, 0.94);
}

header.scrolled .header-top-deck {
    height: 0;
    padding: 0 30px !important;
    opacity: 0;
    overflow: hidden;
    border-bottom-color: transparent;
}

header.scrolled .header-middle-deck {
    padding: 8px 30px !important;
}

/* Sticky Compact Navigation Links */
.header-scroll-links {
    display: none;
}

header.scrolled .header-scroll-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 24px;
    margin-right: 15px;
}

.scroll-nav-link {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.025);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.scroll-nav-link i {
    font-size: 13px;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.scroll-nav-link:hover {
    background: linear-gradient(135deg, var(--primary-red) 0%, #e53935 100%) !important;
    border-color: var(--primary-red) !important;
    color: #ffffff !important;
    transform: translateY(-1.5px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.2);
}

.scroll-nav-link:hover i {
    color: #ffffff !important;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    header.scrolled .header-scroll-links {
        display: none !important;
    }
}

/* Highlighted Products Links styling */
.top-products-link {
    color: var(--primary-red) !important;
    font-weight: 700 !important;
}

.top-products-link:hover {
    color: #e53935 !important;
}

.view-products-link {
    border-color: rgba(211, 47, 47, 0.2) !important;
    color: var(--primary-red) !important;
    background: rgba(211, 47, 47, 0.03) !important;
}

/* Primary logo-aligned CTA products button */
.logo-products-btn {
    font-size: 13.5px;
    font-weight: 800;
    color: #ffffff !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #e53935 100%) !important;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    margin-left: 20px;
    margin-right: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-products-btn i {
    font-size: 14px;
}

.logo-products-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%) !important;
}

@media (max-width: 992px) {
    .logo-products-btn {
        display: none !important;
    }
}

header.scrolled .logo img {
    height: 44px;
}

header.scrolled .header-contact-bento {
    gap: 8px !important;
}

header.scrolled .bento-contact-card {
    padding: 4px 10px !important;
    background: rgba(0, 0, 0, 0.025) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
}

header.scrolled .bento-contact-card:hover {
    background: rgba(211, 47, 47, 0.06) !important;
    border-color: rgba(211, 47, 47, 0.2) !important;
}

header.scrolled .bento-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 12px !important;
    line-height: 28px !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
}

header.scrolled .bento-info {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.15 !important;
}

header.scrolled .bento-label {
    font-size: 9px !important;
    font-weight: 700 !important;
    color: #666666 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
}

header.scrolled .bento-val {
    font-size: 12px !important;
    font-weight: 800 !important;
    color: #111111 !important;
    letter-spacing: -0.2px !important;
}

header.scrolled .cat-nav-dock {
    margin-top: 0 !important;
    border-radius: 0 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.04) !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    width: 100% !important;
    padding: 3px 30px !important;
}

header.scrolled .cat-link {
    padding: 6px 10px !important;
    font-size: 10px;
    background: transparent !important;
    border-color: transparent !important;
}

header.scrolled .cat-item:hover .cat-link {
    background: rgba(211, 47, 47, 0.05) !important;
    border-color: rgba(211, 47, 47, 0.12) !important;
}

/* Unified Glass Container */
.header-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.72) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(211, 47, 47, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: visible;
    width: 100%;
}

/* Upper Deck - Tagline & Global Utilities */
.header-top-deck {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 1;
    position: relative;
}

.top-tagline-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    left: 30px;
}

@media (max-width: 1150px) {
    .top-tagline-wrapper {
        display: none !important;
    }
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(211, 47, 47, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}

.top-tagline {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-quick-links {
    display: flex;
    gap: 30px;
}

.top-quick-links a {
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    opacity: 1;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.top-quick-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.top-quick-links a:hover {
    opacity: 1;
    color: var(--primary-red);
}

.top-quick-links a:hover::after {
    width: 100%;
}

.top-quick-links i {
    color: var(--primary-red);
    font-size: 13px;
    opacity: 1;
}

/* Middle Deck - Brand, Search, Contacts */
.header-middle-deck {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px !important;
    gap: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Brand Overlapping Badge */
.logo {
    display: block;
    position: relative;
    z-index: 1002;
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    display: block;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo:hover img {
    transform: scale(1.05);
}

/* Expanding Search Capsule */
.header-search-section {
    flex-grow: 1;
    max-width: 420px;
    margin: 0 10px;
}

.search-bar {
    width: 100%;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 120px 12px 42px !important;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 500;
    color: #111;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.search-bar::before {
    content: '\f002';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    font-size: 13px;
    pointer-events: none;
    z-index: 2;
}

.search-bar input:focus {
    background: #fff;
    border-color: var(--primary-red);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.08);
    outline: none;
}

.search-bar button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-red);
    color: #fff;
    border: none;
    padding: 7px 18px !important;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.search-bar button i {
    font-size: 11px;
}

.search-bar button:hover {
    background: #b71c1c;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

/* Location Bento Widgets */
.header-contact-bento {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.bento-contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px !important;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}

.bento-contact-card:hover {
    background: #fff;
    border-color: rgba(211, 47, 47, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.bento-icon {
    width: 36px;
    height: 36px;
    background: rgba(211, 47, 47, 0.06);
    border-radius: 50%;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.bento-contact-card:hover .bento-icon {
    background: var(--primary-red);
    color: #fff;
    transform: scale(1.05);
}

.bento-info {
    display: flex;
    flex-direction: column;
}

.bento-label {
    font-size: 9.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.bento-val {
    font-size: 13px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.2px;
}

/* Detached Floating Bento Category Dock */
.cat-nav-dock {
    margin: 25px auto 40px auto !important;
    max-width: var(--header-width) !important;
    width: 95% !important;
    border-radius: 24px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.85) 100%) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px !important;
    z-index: 999;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.cat-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 12px 10px;
    width: 100%;
}

.cat-item {
    position: relative;
}

/* Beautiful Bento Capsules */
.cat-link {
    padding: 10px 18px !important;
    font-size: 12.5px;
    font-weight: 800;
    text-transform: uppercase;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    letter-spacing: 0.8px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.cat-link i:first-child {
    font-size: 15px;
    color: var(--primary-red);
    opacity: 0.95;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-link i.fa-chevron-down {
    font-size: 9px;
    opacity: 0.5;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Interactive Hover States */
.cat-item:hover .cat-link {
    background: linear-gradient(135deg, var(--primary-red) 0%, #e53935 100%) !important;
    border-color: var(--primary-red) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.25);
}

.cat-item:hover .cat-link i:first-child {
    color: #ffffff !important;
    transform: scale(1.15);
    opacity: 1;
}

.cat-item:hover .cat-link i.fa-chevron-down {
    color: #ffffff !important;
    transform: rotate(180deg);
    opacity: 1;
}

.cat-link.home-btn {
    padding: 8px 12px !important;
    background: rgba(211, 47, 47, 0.03);
    border-color: rgba(211, 47, 47, 0.06);
}

/* Floating Wishlist Button Badge */
.wishlist-btn {
    padding-left: 15px;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 10px;
}

.wishlist-btn a {
    font-size: 11.5px;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px !important;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wishlist-btn a:hover {
    background: rgba(211, 47, 47, 0.07);
    border-color: rgba(211, 47, 47, 0.18);
    color: var(--primary-red);
    transform: translateY(-1.5px);
    box-shadow: 0 6px 15px rgba(211, 47, 47, 0.05);
}

.wishlist-btn i {
    font-size: 13.5px;
    color: var(--primary-red);
}

/* Overhauled Premium Mega Menu Overlay */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px) scale(0.96);
    width: max-content;
    max-width: 1050px;
    min-width: 320px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 2000;
    padding: 35px 40px !important;
    display: flex;
    gap: 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 24px;
    pointer-events: none;
    transform-origin: top center;
}

.cat-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px) scale(1);
    pointer-events: auto;
}

/* Align left-side dropdown menus cleanly (Faucets, Sinks, Toilets) */
.cat-item:nth-child(-n+3) .mega-menu {
    left: 0 !important;
    right: auto !important;
    transform: translateY(15px) scale(0.96) !important;
    transform-origin: top left !important;
}

.cat-item:nth-child(-n+3):hover .mega-menu {
    transform: translateY(5px) scale(1) !important;
}

/* Align middle dropdown menus cleanly (centered) (Tub & Showers, Water Heaters, Water Conditioners) */
.cat-item:nth-child(n+4):nth-child(-n+6) .mega-menu {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(15px) scale(0.96) !important;
    transform-origin: top center !important;
}

.cat-item:nth-child(n+4):nth-child(-n+6):hover .mega-menu {
    transform: translateX(-50%) translateY(5px) scale(1) !important;
}

/* Align right-side dropdown menus cleanly (Pumps, Plumbing, Tools) */
.cat-item:nth-child(n+7) .mega-menu {
    left: auto !important;
    right: 0 !important;
    transform: translateY(15px) scale(0.96) !important;
    transform-origin: top right !important;
}

.cat-item:nth-child(n+7):hover .mega-menu {
    transform: translateY(5px) scale(1) !important;
}

.mega-col h4 {
    font-size: 13.5px;
    color: #111;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 800;
}

.mega-col h4::after {
    content: '';
    display: block;
    width: 20px;
    height: 3px;
    background: var(--primary-red);
    margin-top: 8px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.mega-col:hover h4::after {
    width: 35px;
}

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

.mega-links a {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-weight: 500;
    padding: 2px 0;
}

.mega-links a:hover {
    color: var(--primary-red);
    transform: translateX(6px);
}


/* Hero Section */
.hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 440px;
    margin: 0 !important;
    padding: 0 !important;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75);
}

/* Boxless Editorial Hero Text Overlay */
.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 900px;
    z-index: 5;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
}

.hero-tagline {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff4d4d;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.hero-text-overlay h2 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    color: #ffffff;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
}

.hero-text-overlay h2 span {
    color: #ffffff;
    font-weight: 300;
}

.hero-text-overlay p {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

@media (max-width: 768px) {
    .hero {
        height: 340px;
    }
    
    .hero-text-overlay h2 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .hero-text-overlay p {
        font-size: 14px;
    }

    .hero-tagline {
        font-size: 11px;
        letter-spacing: 2px;
    }
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    border-radius: 50%;
}

.arrow-prev { left: 30px; }
.arrow-next { right: 30px; }

.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: var(--primary-red);
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0 60px !important;
    text-align: center;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(211, 47, 47, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(211, 47, 47, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(211, 47, 47, 0.05) 0%, transparent 60%);
    background-size: 50px 50px, 50px 50px, 100% 100%;
    z-index: -1;
}

.welcome-section::after {
    content: 'WSCO-TECHNICAL-DIV';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 10px;
    font-family: monospace;
    color: rgba(211, 47, 47, 0.2);
    letter-spacing: 5px;
    z-index: 1;
}

/* Minimalist Welcome Section without Boxes */
.welcome-section {
    padding: 42px 0 32px 0 !important;
    text-align: center;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.welcome-section h1 {
    font-size: 38px;
    font-weight: 300;
    color: #111;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.welcome-section h1 span {
    font-weight: 800;
    color: var(--primary-red);
}

.welcome-subtitle {
    font-size: 15.5px;
    color: #555555;
    margin: 0 auto 20px auto;
    max-width: 680px;
    line-height: 1.5;
    font-weight: 500;
}

.welcome-locations-clean {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.location-inline-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 24px !important;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-inline-item:hover {
    background: #ffffff;
    border-color: rgba(211, 47, 47, 0.4);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.12);
    transform: translateY(-2px);
}

.location-icon {
    color: var(--primary-red);
    font-size: 18px;
    flex-shrink: 0;
}

.location-inline-text {
    font-size: 16.5px;
    color: #334155;
    line-height: 1.3;
}

.location-inline-text strong {
    color: #0f172a;
    font-weight: 800;
    margin-right: 6px;
}

.location-inline-text a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-inline-text a:hover {
    color: var(--primary-red);
}

.location-inline-text .phone-link {
    font-weight: 700;
    color: var(--primary-red);
    background: rgba(211, 47, 47, 0.08);
    padding: 4px 12px !important;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.location-inline-text .phone-link:hover {
    background: var(--primary-red);
    color: #ffffff;
}

.dot-separator {
    color: #cbd5e1;
    margin: 0 8px;
    font-weight: 700;
}

.location-divider-bar {
    display: none;
}

@media (max-width: 768px) {
    .welcome-section h1 {
        font-size: 30px;
    }

    .welcome-locations-clean {
        flex-direction: column;
        gap: 10px;
    }

    .location-divider-bar {
        display: none;
    }
}

.welcome-section .phone-highlight:hover {
    color: var(--primary-red);
}

.welcome-section .phone-divider {
    color: #cccccc;
    font-weight: 300;
    font-size: 16px;
    margin: 0 4px;
}

/* Symmetrical Bento Cards Section */
.cards-section {
    padding: 0 0 60px 0;
    background: #fff;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.bento-item-large,
.bento-item-wide {
    grid-column: span 3;
}

.bento-item {
    grid-column: span 2;
}

.m-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fbfd 100%) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 16px !important;
    padding: 24px 22px !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    gap: 18px !important;
    height: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
    overflow: hidden !important;
}

.m-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.m-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(211, 47, 47, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(211, 47, 47, 0.25) !important;
}

.m-card:hover::before {
    background: var(--primary-red);
}

.m-card .icon {
    width: 50px !important;
    height: 50px !important;
    border-radius: 12px !important;
    background: rgba(211, 47, 47, 0.08) !important;
    color: var(--primary-red) !important;
    font-size: 20px !important;
    line-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

.m-card:hover .icon {
    background: linear-gradient(135deg, var(--primary-red), #b71c1c) !important;
    color: #ffffff !important;
    transform: scale(1.06) !important;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3) !important;
}

.bento-content {
    flex: 1 !important;
}

.m-card h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin: 0 0 5px 0 !important;
    line-height: 1.3 !important;
}

.m-card p {
    font-size: 13.5px !important;
    color: #555555 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* Responsive Breakpoints for Bento Grid */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 15px !important;
    }
    .bento-item-large,
    .bento-item-wide {
        grid-column: span 3 !important;
    }
    .bento-item {
        grid-column: span 2 !important;
    }
    .m-card {
        padding: 20px 18px !important;
        gap: 14px !important;
    }
    .m-card h3 {
        font-size: 15px !important;
    }
    .m-card p {
        font-size: 13px !important;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .bento-item-large,
    .bento-item-wide,
    .bento-item {
        grid-column: span 1 !important;
    }
    .m-card {
        padding: 20px !important;
    }
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #eee;
    overflow: hidden;
}

.brands-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.brands-section .section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.brands-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-red);
}

.brands-section .section-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
    font-style: italic;
}

.brands-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.brands-track {
    display: flex;
    width: calc(250px * 20);
    animation: scroll 40s linear infinite;
    gap: 50px;
    align-items: center;
}

.brand-item {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-item a {
    display: block;
    text-decoration: none;
}

.brand-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.brand-item img {
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 10 - 500px)); }
}

/* Clean & Compact Locations Section */
.locations-section {
    padding: 50px 0 !important;
    background: #f8fafc;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.location-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.location-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.location-map {
    width: 100%;
    height: 240px;
    background: #e2e8f0;
    position: relative;
    z-index: 1;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: auto !important;
    position: relative;
    z-index: 2;
}

.location-body {
    padding: 18px 20px !important;
}

.location-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.location-head h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.location-phone {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
}

.location-phone:hover {
    text-decoration: underline;
}

.location-addr {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.location-hours-mini {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    padding: 10px 12px !important;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hours-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
}

.hours-label {
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hours-label i {
    color: var(--primary-red);
    font-size: 11px;
}

.hours-val {
    color: #1e293b;
    font-weight: 600;
}

.hours-val.closed-val {
    color: #ef4444;
    font-weight: 700;
}

.location-dir {
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-dir:hover {
    color: var(--primary-red);
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .location-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}


/* Brands Section */
.brands-section {
    padding: 60px 0 !important;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
}

.brand-item img {
    width: 100%;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Footer */
footer {
    background: #111;
    color: #fff;
    padding: 80px 0 40px !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    margin: 0 auto;
    align-items: start;
}

.footer-right-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.footer-desc {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 20px;
}

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

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.footer-location-item h5 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    margin-top: 0;
}

.footer-location-item p {
    color: #888;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 4px;
}

.footer-loc-link {
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-loc-link:hover {
    color: var(--primary-red);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #888;
    font-size: 13.5px;
    line-height: 1.4;
}

.footer-contact-info li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info li a:hover {
    color: var(--primary-red);
}

.footer-contact-info .info-icon {
    color: var(--primary-red);
    font-size: 13px;
    margin-top: 2px;
    width: 16px;
    text-align: center;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 28px;
    height: 2.5px;
    background: var(--primary-red);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
    transform: translateX(6px);
}

.footer-logo img {
    height: 55px;
    width: auto;
    margin-bottom: 25px;
    display: block;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px !important;
    margin-top: 50px !important;
    text-align: center;
    color: #666;
    font-size: 13px;
}

.cta-button {
    background: var(--primary-red);
    color: #fff;
    padding: 12px 25px !important;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
    border: none;
    cursor: pointer;
}

/* Balanced 2-Column Connect Section */
.connect-section {
    padding: 70px 0 !important;
    background: linear-gradient(135deg, #09090b 0%, #16161a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.connect-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.12) 0%, transparent 70%);
    z-index: 1;
}

.connect-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.connect-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.member-badge {
    background: #ffffff;
    padding: 14px 24px !important;
    border-radius: 12px;
    margin-bottom: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.member-badge:hover {
    transform: translateY(-4px);
}

.member-badge img {
    height: 60px;
    width: auto;
    display: block;
}

.connect-info h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.15;
    color: #ffffff;
}

.connect-info h2 span {
    font-weight: 800;
    color: var(--primary-red);
    text-transform: uppercase;
}

.connect-info p {
    font-size: 15px;
    color: #a0aec0;
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
}

.connect-social-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.connect-social-box h3 {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.connect-social-box p {
    font-size: 13.5px;
    color: #888888;
    margin-bottom: 20px;
    line-height: 1.4;
}

.direct-social-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.direct-social-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px !important;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.direct-social-card:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.social-big-icon {
    font-size: 24px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.direct-social-card.facebook .social-big-icon {
    color: #1877f2;
}

.direct-social-card.instagram .social-big-icon {
    color: #e4405f;
}

.direct-social-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.social-platform {
    font-size: 14.5px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.social-handle {
    font-size: 12px;
    font-weight: 500;
    color: #888888;
}

.social-arrow {
    font-size: 13px;
    color: #666666;
    transition: transform 0.2s ease, color 0.2s ease;
}

.direct-social-card:hover .social-arrow {
    transform: translateX(4px);
    color: #ffffff;
}

@media (max-width: 992px) {
    .connect-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .connect-info p {
        max-width: 100%;
    }
}

/* Scroll Reveal Styles */
.reveal {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Mobile Responsive Navbar Override */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1005;
    padding: 0 !important;
}

.burger-bar {
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-nav-toggle.active .burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--primary-red);
}

.mobile-nav-toggle.active .burger-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-nav-toggle.active .burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--primary-red);
}

/* Mobile Accompanying Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 85px 24px 30px !important;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    width: 100%;
    max-width: 500px;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-right: 5px;
}

/* Scroll lock */
body.no-scroll {
    overflow: hidden !important;
}

/* Mobile Menu Elements */
.mobile-search {
    margin-bottom: 5px;
}

.mobile-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-cat-link {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-cat-link:hover,
.mobile-cat-link:active {
    color: var(--primary-red);
    padding-left: 6px;
}

.mobile-cat-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 12px;
}

.mobile-cat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    padding: 4px 0;
}

.mobile-cat-header i {
    font-size: 11px;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.mobile-cat-item.active .mobile-cat-header i {
    transform: rotate(180deg);
    color: var(--primary-red);
    opacity: 1;
}

.mobile-cat-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 15px;
    margin-top: 0;
}

.mobile-cat-item.active .mobile-cat-links {
    max-height: 500px;
    margin-top: 10px;
}

.mobile-cat-links a {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    padding: 3px 0;
    display: block;
    transition: color 0.2s ease;
}

.mobile-cat-links a:hover {
    color: var(--primary-red);
}

.mobile-quick-links-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-quick-links-group a {
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.03);
    padding: 6px 12px !important;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.mobile-quick-links-group a:hover {
    background: rgba(211, 47, 47, 0.06);
    color: var(--primary-red);
}

.mobile-quick-links-group a i {
    color: var(--primary-red);
}

.mobile-contact-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.mobile-contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px !important;
    background: rgba(211, 47, 47, 0.04);
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

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

.mobile-contact-card i {
    font-size: 15px;
    color: var(--primary-red);
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
}

.mobile-contact-label {
    font-size: 8.5px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.mobile-contact-val {
    font-size: 13px;
    font-weight: 800;
    color: #111;
}

/* Mobile Accordions / Menu Sizing */
@media (max-width: 1024px) {
    body {
        padding-top: 85px; /* Clear compact mobile header height */
    }

    .header-top-deck {
        display: none; /* Hide top bar on tablets/phones */
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .header-search-section {
        display: none; /* Hide search in main row on tablet/mobile */
    }
    
    .header-contact-bento {
        display: none; /* Hide bento locations on tablet/mobile */
    }
    
    .cat-nav-dock {
        display: none; /* Hide bento category dock on tablet/mobile */
    }
    
    header {
        width: 100%;
        margin: 0 !important;
        top: 0;
        left: 0;
        transform: none;
    }
    
    header.scrolled {
        transform: none;
    }
    
    .header-container {
        border-radius: 0;
        border-top: none;
        border-left: none;
        border-right: none;
        padding: 10px 20px !important;
    }
    
    .header-middle-deck {
        padding: 5px 0 !important;
    }
    
    .logo img {
        height: 48px;
    }
}

/* --- Added Mobile Responsiveness Styles --- */

/* Hero responsiveness */
@media (max-width: 768px) {
    .hero {
        height: 250px;
    }
}

/* Category header text scaling */
@media (max-width: 576px) {
    .category-header-title h2 {
        font-size: 20px !important;
    }
}

/* Welcome section mobile scaling */
@media (max-width: 768px) {
    .welcome-section h1 {
        font-size: 28px;
    }
    .welcome-section h2 {
        font-size: 12px;
        letter-spacing: 1px;
    }
    .welcome-section .phone-highlight {
        font-size: 16px;
    }
}

/* Bento Grid mobile scaling */
@media (max-width: 576px) {
    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .bento-item-large, .bento-item-wide, .bento-item {
        grid-column: span 1 !important;
    }
    .m-card {
        min-height: auto !important;
        padding: 18px 16px !important;
        gap: 14px !important;
    }
}

/* Brands section title responsiveness */
@media (max-width: 768px) {
    .brands-section .section-header h2 {
        font-size: 24px;
    }
    .brands-section .section-header p {
        font-size: 14px;
        margin-top: 15px;
    }
}

/* Map Grid responsiveness & visible contact cards on mobile */
@media (max-width: 768px) {
    .map-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .map-container {
        height: 200px;
    }
    .map-info-footer {
        opacity: 1 !important;
        transform: translateY(0) !important;
        background: rgba(0, 0, 0, 0.85) !important;
    }
}

/* Connect Section mobile styling */
@media (max-width: 576px) {
    .connect-text h2 {
        font-size: 28px;
    }
    .member-badge img {
        height: 65px;
    }
    .qr-card {
        padding: 20px !important;
    }
    .qr-image img {
        width: 130px;
        height: 130px;
    }
}

/* Footer responsiveness */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }
    .footer-right-block {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    .footer-logo img {
        margin: 0 auto 20px auto;
    }
    .footer-links {
        align-items: center;
    }
    .footer-contact-info li {
        justify-content: center;
        text-align: center;
    }
}

/* Inner pages banner (About, Contact) */
.inner-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    padding: 80px 20px !important;
}

.inner-hero.about-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Assets/aboutus banner.png') no-repeat center/cover;
}

.inner-hero.contact-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Assets/contact us banner.png') no-repeat center/cover;
}

.inner-hero-sub {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.inner-hero-title {
    font-size: 64px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.inner-hero-title .text-highlight {
    color: var(--primary-red);
    background: none;
    -webkit-text-fill-color: var(--primary-red);
}

.inner-hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 768px) {
    .inner-hero {
        min-height: 300px;
        padding: 60px 15px !important;
    }
    .inner-hero-title {
        font-size: 36px;
        letter-spacing: -1px;
        margin-bottom: 15px;
    }
    .inner-hero-desc {
        font-size: 14px;
        line-height: 1.5;
    }
    .inner-hero-sub {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
}

/* About page Story Section */
.story-section {
    padding: 100px 0;
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.4fr;
    gap: 80px;
    align-items: center;
}

.story-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.story-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.story-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    max-width: 280px;
    margin-left: auto;
}

@media (max-width: 992px) {
    .story-section {
        padding: 60px 0;
    }
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .story-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .story-image-wrap {
        margin: 0 auto;
    }
}

/* About page Core Values */
.values-section {
    background: #fdfdfd;
    padding: 120px 0;
    position: relative;
}

.values-header {
    text-align: center;
    margin-bottom: 80px;
}

.values-subtitle {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.values-title {
    font-size: 42px;
    font-weight: 300;
    color: #111;
    letter-spacing: -1.5px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .values-section {
        padding: 60px 0;
    }
    .values-header {
        margin-bottom: 40px;
    }
    .values-title {
        font-size: 32px;
    }
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Contact page Section & Form */
.contact-section {
    padding: 100px 0;
    background: #fff;
}

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

.contact-info-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 40px !important;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.05) 0%, rgba(255,255,255,1) 100%) !important;
}

.contact-info-title {
    font-size: 28px !important;
    margin-bottom: 30px !important;
    font-weight: 700 !important;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item .icon {
    background: var(--primary-red) !important;
    color: #fff !important;
}

.contact-item-label {
    font-size: 14px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-item-val {
    font-size: 16px;
    color: #111;
    font-weight: 600;
}

.form-container {
    background: #fdfdfd;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #eee;
}

.form-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 35px;
    color: #111;
    letter-spacing: -1px;
}

.form-title span {
    color: var(--primary-red);
}

.form-name-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.05);
}

.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 15px;
    resize: none;
    outline: none;
    transition: var(--transition);
}

.form-submit {
    width: 100%;
    padding: 18px !important;
    font-size: 16px;
    border-radius: 12px;
}

@media (max-width: 992px) {
    .contact-section {
        padding: 60px 0;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-info-card {
        padding: 30px !important;
    }
    .form-container {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contact-info-title {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }
    .contact-info-item {
        gap: 15px;
        margin-bottom: 20px;
    }
    .contact-item-label {
        font-size: 12px;
    }
    .contact-item-val {
        font-size: 14px;
    }
    .form-name-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
    .form-container {
        padding: 20px;
        border-radius: 20px;
    }
    .form-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
}

/* Core Values Section (About Page) */
.values-section {
    padding: 70px 0 80px 0 !important;
    background: #ffffff;
}

.values-header {
    text-align: center;
    margin-bottom: 45px;
}

.values-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.values-title {
    font-size: 32px;
    font-weight: 400;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.values-title b {
    font-weight: 800;
    color: #111;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.values-grid .bento-item {
    grid-column: span 1;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}

/* Clickable QR Card & Black Glassmorphic Social Modal */
.qr-card {
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.qr-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 35px rgba(211, 47, 47, 0.25) !important;
    border-color: rgba(211, 47, 47, 0.4) !important;
}

/* Minimalist Black Glass Social Modal */
.social-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease-out;
}

.social-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.social-modal-card {
    background: rgba(18, 18, 20, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 28px !important;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: scale(0.95);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.social-modal-overlay.active .social-modal-card {
    transform: scale(1);
}

.social-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 20px;
    color: #888888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.social-modal-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.social-modal-header {
    margin-bottom: 24px;
}

.social-modal-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(211, 47, 47, 0.1);
    color: var(--primary-red);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px auto;
}

.social-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.social-modal-header p {
    font-size: 13px;
    color: #888888;
    line-height: 1.5;
    margin: 0;
}

.social-links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px !important;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: all 0.2s ease;
}

.facebook-btn:hover {
    background: rgba(24, 119, 242, 0.12);
    border-color: rgba(24, 119, 242, 0.4);
}

.instagram-btn:hover {
    background: rgba(228, 64, 95, 0.12);
    border-color: rgba(228, 64, 95, 0.4);
}

.social-btn-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.facebook-btn .social-btn-icon {
    background: #1877F2;
    color: #ffffff;
}

.instagram-btn .social-btn-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.social-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex-grow: 1;
}

.social-btn-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.social-btn-text span {
    font-size: 11.5px;
    color: #888888;
}

.social-btn .arrow-icon {
    font-size: 12px;
    color: #666666;
    transition: transform 0.2s ease, color 0.2s ease;
}

.social-btn:hover .arrow-icon {
    transform: translateX(3px);
    color: #ffffff;
}
