/* ===== MODERN REDESIGN - TAIDA ENTERPRISES ===== */

:root {
    --primary-blue: #032a83;
    --secondary-teal: #0283bf;
    --accent-cyan: #0283bf;
    --light-gray: #F8F9FA;
    --dark-gray: #2D3748;
    --white: #FFFFFF;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Typography */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

/* Modern Navbar */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: var(--white) !important;
}

.navbar-brand h1 {
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-gray) !important;
    margin: 0 0.5rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-teal) !important;
}

.nav-contact {
    background: var(--secondary-teal) !important;
    border-radius: 4px;
    padding: 0.5rem 1.5rem !important;
    transition: all 0.3s ease;
}

.nav-contact:hover {
    background: var(--primary-blue) !important;
    transform: translateY(-2px);
}

/* Hero Section - Modern */
.hero-header {
    background: linear-gradient(rgba(10, 36, 99, 0.9), rgba(0, 106, 113, 0.9)), 
                url('../img/hero-lab.jpg') center/cover no-repeat;
    padding: 8rem 0 6rem !important;
    position: relative;
}

.hero-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-breadcrumb {
    color: rgba(255, 255, 255, 0.8);
}

/* Modern Cards */
.product-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card img {
    height: 200px;
    object-fit: cover;
}

.product-status {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-instock {
    background: #10b981;
    color: white;
}

.status-quote {
    background: #f59e0b;
    color: white;
}

/* Quote List Sidebar */
.quote-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transition: right 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}

.quote-sidebar.active {
    right: 0;
}

.quote-item {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.quote-total {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
}

/* Advanced Filter */
.filter-section {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    display: block;
}

/* Modern Buttons */
.btn-primary {
    background: var(--primary-blue);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 36, 99, 0.2);
}

.btn-outline-teal {
    border: 2px solid var(--secondary-teal);
    color: var(--secondary-teal);
    background: transparent;
}

.btn-outline-teal:hover {
    background: var(--secondary-teal);
    color: white;
}

/* Trust Badges */
.trust-badges {
    padding: 3rem 0;
    background: var(--light-gray);
}

/* Trust Badges & Client Logos - ALWAYS IN COLOR */
.brand-logo {
    height: 40px;
    opacity: 1;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Client Logos - COLOR VERSION */
.client-logo {
    height: 80px;
    object-fit: contain;
    opacity: 1;
    transition: all 0.3s ease;
    padding: 15px;
    max-width: 150px;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-header h1 {
        font-size: 2.5rem;
    }
    
    .quote-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .navbar-brand h1 {
        font-size: 1.5rem;
    }
}

/* FORCE COLOR LOGOS - OVERRIDE ANY GRAYSCALE */
.brand-logo,
.client-logo,
img[class*="logo"],
img[src*="logo"] {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
}

/* Custom Active Button Colors for Nav Pills */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: var(--secondary-teal) !important;
    color: white !important;
}

/* Hover states */
.nav-pills .nav-link:hover:not(.active) {
    background-color: var(--secondary-teal) !important;
}

/* If you want to use your secondary color for some tabs */
#support-tab.active {
    background-color: var(--secondary-teal) !important;
}

#partner-tab.active {
      background-color: var(--secondary-teal) !important;
}

#general-tab.active {
      background-color: var(--secondary-teal) !important;
}

