/* ─── VARIABLES ─────────────────────────────────────────────────────────── */
:root {
    --c-dark: #0f1923;
    --c-dark2: #1a2332;
    --c-dark3: #243042;
    --c-border: #2d3a4a;
    --c-accent: #e8b84b;
    --c-accent2: #d4a43c;
    --c-white: #ffffff;
    --c-text: #e2e8f0;
    --c-muted: #8fa3b8;
    --c-light: #f4f6f8;
    --c-light2: #eaeef2;
    --c-primary: #1e6fbe;
    --c-success: #22863a;
    --c-warning: #d97706;
    --c-danger: #c0392b;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 4px rgba(0,0,0,.12);
    --shadow-md: 0 4px 16px rgba(0,0,0,.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.2);
    --transition: .2s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET & BASE ─────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #2d3748;
    background: #ffffff;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    margin-top: 0;
}

a {
    color: var(--c-primary);
    text-decoration: none;
    transition: color var(--transition);
}

    a:hover {
        color: var(--c-accent2);
    }

img {
    max-width: 100%;
    height: auto;
}

/* ─── TOP BAR ──────────────────────────────────────────────────── */
.topbar {
    background: var(--c-dark);
    padding: 6px 0;
    font-size: 13px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.topbar-item {
    color: #94a3b8;
    transition: color var(--transition);
}

    .topbar-item:hover,
    .topbar-item a:hover {
        color: var(--c-accent);
    }

    .topbar-item i {
        margin-right: 5px;
        color: var(--c-accent);
        font-size: 11px;
    }

.topbar-social {
    color: #6b7c8d;
    font-size: 14px;
    transition: color var(--transition);
}

    .topbar-social:hover {
        color: var(--c-accent);
    }

.topbar-divider {
    width: 1px;
    height: 14px;
    background: var(--c-border);
}

.text-accent {
    color: var(--c-accent);
}

/* ─── NAVBAR (Scoped to avoid Bootstrap conflicts) ────────────── */
.site-navbar {
    background: rgba(15, 25, 35, .97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--c-border);
    padding: 10px 0;
    transition: all .3s;
}

    .site-navbar.scrolled {
        padding: 6px 0;
        box-shadow: 0 2px 24px rgba(0, 0, 0, .4);
    }

.navbar-brand {
    display: flex;
    align-items: baseline;
    gap: 4px;
    text-decoration: none;
}

.brand-an {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--c-accent);
    letter-spacing: -0.02em;
}

.brand-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
}

.brand-tagline {
    font-size: 0.7rem;
    color: #6b7c8d;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-left: 6px;
    align-self: center;
}

/* Scoped nav-link styles */
.site-navbar .nav-link {
    color: #b8c9d8;
    font-weight: 500;
    font-size: 15px;
    padding: .5rem .75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

    .site-navbar .nav-link:hover {
        color: #fff;
        background: rgba(255, 255, 255, .06);
    }

    .site-navbar .nav-link.active {
        color: var(--c-accent);
    }

/* Scoped dropdown styles */
.site-navbar .dropdown-menu {
    background: var(--c-dark2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: .5rem;
    box-shadow: var(--shadow-lg);
    min-width: 220px;
}

.site-navbar .dropdown-item {
    color: #b8c9d8;
    font-size: 14px;
    border-radius: var(--radius-sm);
    padding: .5rem .9rem;
    transition: all var(--transition);
}

    .site-navbar .dropdown-item:hover {
        color: #fff;
        background: rgba(255, 255, 255, .08);
    }

.site-navbar .dropdown-divider {
    border-color: var(--c-border);
    margin: .3rem 0;
}

.site-navbar .navbar-toggler {
    border: 1px solid var(--c-border);
    padding: .35rem .6rem;
}

.site-navbar .navbar-toggler-icon {
    filter: invert(1);
}

/* ─── BUTTONS (Specific selectors) ────────────────────────────── */
.btn-accent {
    background: var(--c-accent);
    color: var(--c-dark);
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    letter-spacing: .02em;
}

    .btn-accent:hover {
        background: var(--c-accent2);
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(232, 184, 75, .35);
    }

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

    .btn-whatsapp:hover {
        background: #1ebe5d;
        color: #fff;
    }

.btn-enquire {
    background: transparent;
    color: var(--c-accent);
    border: 1.5px solid var(--c-accent);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

    .btn-enquire:hover {
        background: var(--c-accent);
        color: var(--c-dark);
    }

.btn-view {
    background: var(--c-dark2);
    color: #b8c9d8;
    border: 1px solid var(--c-border);
    font-size: 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

    .btn-view:hover {
        background: var(--c-primary);
        color: #fff;
        border-color: var(--c-primary);
    }

.btn-whatsapp-sm {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
}

.btn-hero {
    padding: .75rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

/* ─── HERO SECTION ─────────────────────────────────────────────────── */
.hero-section {
    background: var(--c-dark);
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(232, 184, 75, .08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(30, 111, 190, .1) 0%, transparent 40%), linear-gradient(135deg, rgba(232, 184, 75, .03) 0%, transparent 60%);
    pointer-events: none;
}

.min-vh-hero {
    min-height: calc(100vh - 112px);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 1.25rem;
}

    .hero-eyebrow span {
        background: rgba(232, 184, 75, .12);
        color: var(--c-accent);
        padding: 3px 10px;
        border-radius: 20px;
        border: 1px solid rgba(232, 184, 75, .25);
    }

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--c-muted);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 1.5rem;
    border-top: 1px solid var(--c-border);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--c-accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: 3px;
}

.hero-image-wrap {
    position: relative;
}

.hero-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 100%;
    height: auto;
}

.hero-badge {
    position: absolute;
    background: var(--c-dark2);
    border: 1px solid var(--c-border);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

    .hero-badge i {
        color: var(--c-accent);
        margin-right: 6px;
    }

.hero-badge-1 {
    top: -12px;
    left: -20px;
}

.hero-badge-2 {
    bottom: 24px;
    right: -16px;
}

.scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--c-muted);
    animation: bounce 2s infinite;
    font-size: 1.1rem;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ─── USP STRIP ──────────────────────────────────────────────────────────── */
.usp-strip {
    background: var(--c-dark2);
    border-bottom: 1px solid var(--c-border);
    padding: 20px 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
}

    .usp-item i {
        font-size: 1.6rem;
        color: var(--c-accent);
        flex-shrink: 0;
    }

    .usp-item div {
        display: flex;
        flex-direction: column;
    }

    .usp-item strong {
        font-size: 14px;
        font-weight: 700;
        color: #fff;
        margin: 0;
    }

    .usp-item span {
        font-size: 12px;
        color: var(--c-muted);
    }

/* ─── SECTIONS ───────────────────────────────────────────────────────────── */
.section-padded {
    padding: 80px 0;
}

.bg-light-industrial {
    background: #f8f9fb;
}

.bg-dark-industrial {
    background: var(--c-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--c-accent2);
    background: rgba(232, 184, 75, .1);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: .75rem;
    border: 1px solid rgba(232, 184, 75, .2);
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: .75rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* ─── CATEGORY GRID ──────────────────────────────────────────────────────── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    text-decoration: none;
    transition: all var(--transition);
    color: inherit;
}

    .category-card:hover {
        border-color: var(--c-accent);
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    }

.cat-icon {
    font-size: 1.5rem;
    color: var(--c-accent);
    flex-shrink: 0;
}

.cat-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 3px;
}

.cat-link {
    font-size: 12px;
    color: var(--c-primary);
}

    .cat-link i {
        font-size: 10px;
    }

/* ─── PRODUCT CARDS ───────────────────────────────────────────────────────── */
.product-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .product-card:hover {
        box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
        transform: translateY(-4px);
        border-color: #c8d3e0;
    }

.product-card-img {
    position: relative;
    padding-top: 62%;
    background: #f8f9fb;
    overflow: hidden;
}

    .product-card-img img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s;
    }

.product-card:hover .product-card-img img {
    transform: scale(1.04);
}

.product-no-img {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #c8d3e0;
}

.product-badge-condition {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .06em;
    z-index: 5;
}

    .product-badge-condition.new {
        background: #d1fae5;
        color: #065f46;
    }

    .product-badge-condition.used {
        background: #fef3c7;
        color: #92400e;
    }

    .product-badge-condition.refurbished {
        background: #e0e7ff;
        color: #3730a3;
    }

.product-badge-featured {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--c-accent);
    color: var(--c-dark);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 5;
}

.product-card-body {
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-primary);
    margin-bottom: .4rem;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 .4rem;
    line-height: 1.3;
}

    .product-name a {
        color: #1a202c;
        text-decoration: none;
    }

        .product-name a:hover {
            color: var(--c-primary);
        }

.product-short-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: auto;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: .75rem;
    padding-top: .75rem;
    border-top: 1px solid #f1f5f9;
}

.price-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--c-dark);
}

.price-por {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-primary);
}

.product-actions-inline {
    display: flex;
    gap: 6px;
}

/* ─── SERVICES ────────────────────────────────────────────────────────────── */
.services-section {
    background: #f8f9fb;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
}

    .service-card:hover {
        border-color: var(--c-accent);
        box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
    }

.service-icon {
    font-size: 2rem;
    color: var(--c-accent);
    flex-shrink: 0;
    width: 52px;
}

.service-body {
    flex: 1;
}

    .service-body h4 {
        font-size: 1rem;
        font-weight: 700;
        margin: 0 0 4px;
    }

    .service-body p {
        font-size: 13px;
        color: #64748b;
        margin: 0;
    }

.service-arrow {
    color: #c8d3e0;
    font-size: 1.25rem;
    transition: all var(--transition);
}

.service-card:hover .service-arrow {
    color: var(--c-accent);
    transform: translateX(4px);
}

/* ─── WHY SECTION ─────────────────────────────────────────────────────────── */
.why-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all var(--transition);
}

    .why-card:hover {
        background: rgba(255, 255, 255, .08);
        border-color: rgba(232, 184, 75, .3);
    }

    .why-card i {
        font-size: 2rem;
        color: var(--c-accent);
        display: block;
        margin-bottom: .75rem;
    }

    .why-card h5 {
        color: #fff;
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: .5rem;
    }

    .why-card p {
        color: var(--c-muted);
        font-size: 14px;
        margin: 0;
    }

/* ─── TESTIMONIALS ────────────────────────────────────────────────────────── */
.testimonial-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
    transition: all var(--transition);
}

    .testimonial-card:hover {
        box-shadow: var(--shadow-md);
    }

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: .75rem;
    font-size: 14px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-dark2);
    color: var(--c-accent);
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author strong {
    font-size: 14px;
    font-weight: 700;
    display: block;
}

.testimonial-author span {
    font-size: 12px;
    color: #64748b;
    display: block;
}

.testimonial-author .city {
    color: var(--c-primary);
}

/* ─── CTA SECTION ─────────────────────────────────────────────────────────── */
.cta-section {
    background: var(--c-dark2);
    border-top: 1px solid var(--c-border);
    padding: 60px 0;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 .5rem;
}

.cta-subtitle {
    color: var(--c-muted);
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ─── FOOTER ───────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--c-dark);
    color: var(--c-muted);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-brand {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.footer-about {
    font-size: 14px;
    line-height: 1.7;
    color: var(--c-muted);
    margin-bottom: 1.25rem;
    max-width: 340px;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.25rem;
}

.footer-contact-item {
    font-size: 13px;
    color: var(--c-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

    .footer-contact-item i {
        color: var(--c-accent);
        margin-top: 2px;
        flex-shrink: 0;
    }

.footer-socials {
    display: flex;
    gap: 12px;
}

    .footer-socials a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--c-dark3);
        border: 1px solid var(--c-border);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--c-muted);
        font-size: 15px;
        transition: all var(--transition);
    }

        .footer-socials a:hover {
            background: var(--c-accent);
            color: var(--c-dark);
            border-color: var(--c-accent);
        }

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .footer-links a {
        font-size: 14px;
        color: var(--c-muted);
        text-decoration: none;
        transition: color var(--transition);
    }

        .footer-links a:hover {
            color: var(--c-accent);
        }

.footer-bottom {
    padding: 16px 0;
    border-top: 1px solid var(--c-border);
    font-size: 13px;
    color: #4a5568;
}

/* ─── WHATSAPP FLOAT ───────────────────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
    transition: all var(--transition);
    text-decoration: none;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 28px rgba(37, 211, 102, .65);
        color: #fff;
    }

/* ─── RESPONSIVE FIXES ────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .topbar {
        display: none;
    }

    .hero-section {
        padding: 50px 0 40px;
    }

    .min-vh-hero {
        min-height: auto;
        padding: 0;
    }

    .hero-stats {
        gap: 20px;
    }

    .cta-inner {
        flex-direction: column;
    }

    /* Fix navbar collapse */
    .site-navbar .navbar-collapse {
        background: var(--c-dark);
        padding: 15px;
        border-radius: var(--radius-md);
        margin-top: 10px;
        max-height: 80vh;
        overflow-y: auto;
    }
}

@media (max-width: 575px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-num {
        font-size: 1.4rem;
    }
}


