:root {
    --primary: #2b6ed3;
    --primary-dark: #1a4da3;
    --secondary: #f05a28;
    --dark: #1a1a1a;
    --light: #f4f7f6;
    --white: #ffffff;
    --text: #333333;
    --text-muted: #666666;
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --container: 1100px;
    --transition: all 0.3s ease;
}

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

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

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

ul {
    list-style: none;
}

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

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 10000;
    /* Extremely high to stay on top */
}

main {
    position: relative;
    z-index: 50;
    background: var(--white);
}

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

.logo img {
    height: 45px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.png') center/cover;
    color: var(--white);
    padding: 10rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.card {
    padding: 2.5rem;
    background: var(--light);
    border-radius: 8px;
    text-align: center;
}

.card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
}

/* Product Cards */
.product-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Contact Info */
.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

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

.footer-logo-center img {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

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

.footer-about p {
    color: #999;
    margin-top: 1.5rem;
}

/* Cleanup: Aggressively hide residual original site elements */
.wixui-social-bar,
[data-testid="social-bar-container"],
.oRtuWN,
[data-testid="socialBar"],
#comp-l1f2,
[id^="comp-l1f"],
/* Catching similar social bar IDs */
#SITE_FOOTER,
#SITE_FOOTER_CONTAINER,
.wixui-footer,
#SITE_HEADER,
#SITE_HEADER_CONTAINER,
.wixui-header,
.floating-social,
.social-toolbar,
.social-bar-container,
[class*="social-bar"],
[class*="wixui-"],
#PAGES_CONTAINER_BG

/* Hiding original page background if it lingers */
    {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
}

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

.footer-links a {
    color: #999;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        z-index: 99999;
        /* Higher than 'main' and 'hero' */
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #eee;
        width: 100%;
    }

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

    .grid-3,
    .contact-details,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}