
@charset "utf-8";
@import url(/css/language.css);
/* --- RESET & VARIABLES --- */
:root {
    --primary-blue: #004b87;
    /* Corporate Industrial Blue */
    --dark-blue: #002a4d;
    --accent-grey: #f4f6f8;
    --text-main: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border: #e1e1e1;}
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- TOP BAR --- */
.top-bar {
    background-color: var(--accent-grey);
    padding: 10px 5%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.top-bar span {
    margin-left: 20px;
}

.top-bar a:hover {
    color: var(--primary-blue);
}

/* --- NAVIGATION --- */
nav {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: #888;
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 25px;
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a {
    color: var(--dark-blue);
    text-transform: uppercase;
    font-size: 1.0rem;
    transition: 0.2s;
}

.nav-links a:hover {
    color: var(--primary-blue);
    border-bottom: 2px solid var(--primary-blue);
}

.quote-btn {
    background-color: var(--primary-blue);
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 1.25rem;
    font-weight: 700;
}

.quote-btn:hover {
    background-color: var(--dark-blue);
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(0, 42, 77, 0.6), rgba(0, 42, 77, 0.6)),
        url('https://www.afmasia.com/images/inventory.png');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-btn {
    display: inline-block;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.hero-btn:hover {
    background: white;
    color: var(--primary-blue);
}

/* --- PRODUCT CATEGORIES --- */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
}

.section-title h2 {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-title .divider {
    height: 3px;
    width: 60px;
    background: var(--primary-blue);
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 0 5%;
    margin-bottom: 60px;
}

.product-card {
    border: 1px solid var(--border);
    text-align: center;
    padding: 30px 20px;
    transition: 0.3s;
    background: #fff;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.product-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: block;
}

.product-card h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

/* --- MARKETS SECTION --- */
.markets {
    background-color: var(--accent-grey);
    padding: 60px 5%;
}

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

.market-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 4px;
}

.market-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.market-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
}

.market-item:hover img {
    transform: scale(1.1);
}

/* --- STATS / INFO --- */
.info-strip {
    background: var(--dark-blue);
    color: white;
    padding: 40px 5%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.stat-box {
    margin: 20px;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: #6db3f2;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FOOTER --- */
footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 5% 20px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

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

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    /* Hidden for mobile simplicity */
    .hero-content h1 {
        font-size: 2rem;
    }

    .info-strip {
        flex-direction: column;
    }
}
