/* =========================================
   STYLE.CSS - MAXLUBE FINAL VERSION
   ========================================= */

:root {
    --primary-blue: #004B8D;
    --primary-red: #D22630;
    --bright-red: #ff3b30;
    --dark-navy: #0a1f3d;
    --silver: #f8f9fa;
    --text-dark: #212529;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

img {
    max-width: 100%;
    height: auto;
}

.text-primary-custom { color: var(--primary-blue) !important; }
.text-red-custom { color: var(--primary-red) !important; }
.bg-navy { background-color: var(--dark-navy) !important; }

.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
    transition: all 0.3s ease-in-out;
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 55px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark-navy) !important;
    margin: 0 10px;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-red) !important;
}

.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background-image: url('../assets/images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(10, 31, 61, 0.95), rgba(10, 31, 61, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.btn-custom-red {
    background-color: var(--bright-red) !important;
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 35px;
    border-radius: 4px;
    border: 2px solid var(--bright-red);
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.4);
    transition: all 0.3s ease;
}

.btn-custom-red:hover {
    background-color: white !important;
    color: var(--primary-red) !important;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.section-padding { padding: 80px 0; }

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-blue);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
    margin: 15px auto 0;
}

#why-us {
    background-color: var(--dark-navy);
    color: white;
}

.why-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.why-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--bright-red);
    transform: translateY(-5px);
}

.product-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    background: white;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-img-wrapper {
    height: 220px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img-wrapper img {
    transition: 0.5s;
    max-height: 80%;
}

.product-card:hover .product-img-wrapper img { transform: scale(1.1); }

.testimonial-card {
    background: var(--silver);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-red);
}

footer {
    background-color: #051021;
    color: #bbb;
    padding-top: 60px;
    font-size: 0.9rem;
}

.footer-logo {
    max-width: 180px !important;
    margin-bottom: 20px;
    display: block;
}

footer h5, footer h3 { color: white; margin-bottom: 20px; }
footer a { color: #bbb; text-decoration: none; transition: 0.2s; }
footer a:hover { color: var(--bright-red); }

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .navbar-brand img { height: 40px !important; }
    .section-padding { padding: 50px 0; }
}

footer .bg-white {
    color: #212529 !important;
}

footer .bg-white p, 
footer .bg-white h5, 
footer .bg-white li,
footer .bg-white span {
    color: #212529 !important;
    font-weight: 500;
}

footer .bg-white h5 {
    color: var(--primary-blue) !important;
    font-weight: 800 !important;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

footer .bg-white strong {
    color: #000 !important;
    font-weight: 900 !important;
}

footer .bg-white .text-muted {
    color: #6c757d !important;
}

footer .bg-white p.small.text-muted {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 20px;
}

footer .bg-white p.small.text-muted {
    color: #555 !important;
    font-weight: 500;
}

footer .bg-white p.small.text-muted strong {
    display: block;
    color: var(--primary-blue) !important;
    font-size: 1.2rem;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}