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

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HEADER ========== */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e3a5f, #0f2b44);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    font-size: 24px;
    color: #f59e0b;
}

.logo-main {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e3a5f;
}

.logo-sub {
    font-size: 0.7rem;
    color: #64748b;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu li a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #f59e0b;
}

/* Header Call Button */
.call-btn-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37,99,235,0.4);
}

.call-btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.5);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* Mobile Menu - NO DIM/OVERLAY */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background: #1e3a5f;
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 30px rgba(0,0,0,0.15);
    z-index: 1001;
    transition: 0.3s ease-in-out;
    padding: 80px 24px 30px;
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-menu {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-nav-menu li {
    margin-bottom: 20px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #1e3a5f;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    padding: 8px 0;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: #f59e0b;
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.mobile-call, .mobile-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.mobile-call {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.mobile-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

/* ========== FLOATING BUTTONS ========== */
.floating-buttons {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.floating-cart, .floating-wa {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    animation: gentlePulse 2s infinite;
}

.floating-cart {
    background: linear-gradient(135deg, #1e3a5f, #0f2b44);
    color: white;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.floating-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

@keyframes gentlePulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
    50% { transform: scale(1.03); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
}

.floating-cart:hover, .floating-wa:hover {
    transform: translateY(-3px) scale(1.02);
}

.floating-cart .cart-count {
    position: absolute;
    top: -8px;
    left: -8px;
    background: #ef4444;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2b44 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero-content h1 .highlight {
    color: #f59e0b;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    margin: 8px;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #1e3a5f;
    box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,158,11,0.4);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #1e3a5f;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
}

.stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}

.stat-text {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* ========== ABOUT ========== */
.about-section {
    padding: 80px 0;
    background: white;
}

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

.section-tag {
    display: inline-block;
    background: #eef2ff;
    color: #1e3a5f;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-tag.white {
    background: rgba(255,255,255,0.2);
    color: white;
}

.section-title {
    font-size: 2.2rem;
    color: #1e3a5f;
    margin-bottom: 16px;
}

.section-title .highlight {
    color: #f59e0b;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-card {
    text-align: center;
    padding: 32px 24px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.about-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a5f, #0f2b44);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-icon i {
    font-size: 30px;
    color: #f59e0b;
}

.about-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1e3a5f;
}

.about-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== PRODUCTS ========== */
.products-section {
    padding: 80px 0;
    background: #f8fafc;
}

.product-category {
    margin-bottom: 56px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.category-header i {
    font-size: 28px;
    color: #f59e0b;
}

.category-header h3 {
    font-size: 1.3rem;
    color: #1e3a5f;
}

.category-count {
    background: #e2e8f0;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #475569;
}

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

@media (min-width: 768px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .product-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.prod-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.prod-info {
    padding: 18px;
}

.prod-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1e3a5f;
}

.prod-price {
    color: #f59e0b;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 8px 0;
}

.prod-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.btn-call-order, .btn-add-cart {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-call-order {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 2px 8px rgba(16,185,129,0.3);
}

.btn-call-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16,185,129,0.4);
}

.btn-add-cart {
    background: linear-gradient(135deg, #1e3a5f, #0f2b44);
    color: white;
    box-shadow: 0 2px 8px rgba(30,58,95,0.3);
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30,58,95,0.4);
}

/* ========== QUOTE ========== */
.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a5f, #0f2b44);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 768px) {
    .quote-wrapper { grid-template-columns: 1fr 1fr; }
}

.quote-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 16px;
}

.quote-content h2 .highlight {
    color: #f59e0b;
}

.quote-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

.quote-features {
    list-style: none;
    margin-top: 24px;
}

.quote-features li {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
}

.quote-features i {
    color: #f59e0b;
}

.quote-form {
    background: white;
    padding: 32px;
    border-radius: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.input-group textarea ~ i {
    top: 22px;
    transform: none;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    transition: all 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}

.submit-quote-btn {
    width: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

/* ========== CART SIDEBAR ========== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 420px;
    max-width: 90vw;
    height: 100%;
    background: white;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    transition: 0.3s ease-in-out;
    z-index: 1002;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.cart-header h3 {
    color: #1e3a5f;
}

.close-cart {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #64748b;
    transition: color 0.3s;
}

.close-cart:hover {
    color: #ef4444;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.empty-cart {
    text-align: center;
    padding: 40px 0;
    color: #64748b;
}

.empty-cart i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #1e3a5f;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

/* ========== FOOTER - COMPLETELY RESTYLED ========== */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 32px;
    color: #f59e0b;
}

.footer-logo h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #f59e0b;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-col li i {
    width: 20px;
    color: #f59e0b;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: #f59e0b;
    padding-left: 5px;
}

/* Social Links - Properly Styled */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #94a3b8;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #f59e0b;
    color: #0f172a;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.8rem;
    color: #64748b;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .call-btn-header span {
        display: none;
    }
    .call-btn-header {
        padding: 10px 14px;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    .product-grid {
        gap: 12px;
    }
    .prod-img {
        height: 140px;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .floating-buttons {
        right: 16px;
        bottom: 16px;
    }
    .floating-cart, .floating-wa {
        padding: 10px 18px;
    }
    .btn-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .prod-title {
        font-size: 0.8rem;
    }
    .btn-call-order, .btn-add-cart {
        font-size: 0.7rem;
        padding: 8px;
    }
}
/* Logo Area Styles - Add to your existing CSS */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

/* If you want a fallback icon when image is missing */
.logo-img[src=""], 
.logo-img:not([src]) {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231e3a5f"/><text x="50" y="68" font-size="44" text-anchor="middle" fill="%23f59e0b" font-weight="bold">MRM</text></svg>');
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e3a5f;
}

.logo-sub {
    font-size: 0.7rem;
    color: #64748b;
}