:root {
    --red: #e74c3c;
    --dark-red: #c0392b;
    --grey: #2c3e50;
    --dark-grey: #1a252f;
    --white: #ffffff;
    --light-bg: #ecf0f1;
    
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--grey);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Top Bar */
.log-top { background-color: var(--dark-grey); color: #bdc3c7; padding: 8px 0; font-size: 0.8rem; text-align: right; }
.log-top span { margin-left: 20px; }

/* Header */
.axis-header { background-color: var(--white); padding: 15px 0; box-shadow: 0 4px 10px rgba(0,0,0,0.1); border-top: 5px solid var(--red); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--grey); letter-spacing: 1px; }
.red { color: var(--red); }
.arrow { color: var(--red); font-size: 1.2rem; letter-spacing: -2px; }

.axis-nav ul { display: flex; gap: 25px; list-style: none; align-items: center; }
.axis-nav a { font-family: var(--font-head); text-transform: uppercase; font-size: 1.1rem; color: var(--grey); }
.axis-nav a:hover, .axis-nav a.active { color: var(--red); }

.btn-red { background-color: var(--red); color: var(--white) !important; padding: 10px 25px; border-radius: 2px; }
.btn-red:hover { background-color: var(--dark-red); }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: 2px solid var(--grey); font-size: 1.5rem; cursor: pointer; padding: 2px 8px; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--dark-grey); z-index: 2000; padding: 40px; display: flex; flex-direction: column; transition: 0.3s; border-left: 5px solid var(--red); }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; color: var(--white); background: none; border: none; font-size: 1.5rem; margin-bottom: 20px; cursor: pointer; }
.mobile-menu a { padding: 15px 0; border-bottom: 1px solid #34495e; color: var(--white); font-family: var(--font-head); font-size: 1.2rem; }

/* Hero */
.hero-logistics {
    height: 600px; background-size: cover; background-position: center; position: relative;
}
.hero-overlay {
    width: 100%; height: 100%; background: linear-gradient(90deg, rgba(44, 62, 80, 0.9) 0%, rgba(44, 62, 80, 0.4) 100%);
    display: flex; align-items: center;
}
.hero-content { padding-left: 10%; max-width: 700px; }
.hero-content h1 { font-family: var(--font-head); font-size: 4rem; color: var(--white); line-height: 1; margin-bottom: 20px; }
.hero-content p { color: #bdc3c7; font-size: 1.2rem; margin-bottom: 40px; }

/* Tracking Module */
.tracking-module { background: rgba(255,255,255,0.1); padding: 20px; border-left: 5px solid var(--red); backdrop-filter: blur(5px); }
.tracking-module h3 { color: var(--white); font-family: var(--font-head); margin-bottom: 15px; letter-spacing: 1px; }
.input-group { display: flex; gap: 10px; }
.input-group input { flex: 1; padding: 12px; border: none; font-family: var(--font-body); font-weight: bold; color: var(--grey); }
.input-group button { background-color: var(--red); color: white; border: none; padding: 0 25px; font-family: var(--font-head); font-weight: bold; cursor: pointer; letter-spacing: 1px; }
.input-group button:hover { background-color: var(--dark-red); }

/* Services */
.section-padding { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--grey); margin-bottom: 10px; }
.red-bar { width: 80px; height: 5px; background-color: var(--red); margin: 0 auto; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.service-card { background: var(--white); padding: 30px; text-align: center; border-bottom: 4px solid var(--grey); transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.service-card:hover { transform: translateY(-10px); border-bottom-color: var(--red); }
.icon-box { font-size: 3rem; margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 10px; color: var(--grey); }

/* About & Testimonials */
.page-header { background-color: var(--grey); padding: 60px 0; text-align: center; border-bottom: 5px solid var(--red); }
.page-header h1 { font-family: var(--font-head); color: var(--white); font-size: 3rem; letter-spacing: 2px; }

.about-split { display: flex; gap: 50px; align-items: center; }
.text-side { flex: 1; }
.text-side h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--grey); margin-bottom: 20px; }
.red-line { width: 100px; height: 5px; background-color: var(--red); margin-bottom: 30px; }
.stats-list { list-style: none; margin-top: 30px; }
.stats-list li { margin-bottom: 10px; font-size: 1.1rem; }
.stats-list strong { color: var(--red); font-size: 1.5rem; margin-right: 10px; }
.img-side img { width: 100%; border: 10px solid var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ref-card { background: var(--white); padding: 30px; border-left: 5px solid var(--red); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.rating { color: #f1c40f; margin-bottom: 15px; }
.ref-card h3 { font-family: var(--font-head); margin-bottom: 10px; font-size: 1.2rem; }
.ref-card p { font-style: italic; color: #555; margin-bottom: 15px; }
.company { font-weight: bold; color: var(--grey); text-align: right; }

/* Contact Form */
.quote-container { display: flex; background: var(--white); box-shadow: 0 10px 40px rgba(0,0,0,0.1); border-radius: 4px; overflow: hidden; }
.quote-info { flex: 1; background-color: var(--grey); color: var(--white); padding: 50px; }
.quote-info h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--red); margin-bottom: 20px; }
.contact-details { margin-top: 40px; font-size: 1.1rem; }

.industrial-form { flex: 1.5; padding: 50px; }
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.form-group { flex: 1; margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-head); font-weight: bold; margin-bottom: 5px; color: var(--grey); }
.form-group input, .form-group select { width: 100%; padding: 12px; border: 2px solid #ddd; background: #f9f9f9; font-family: var(--font-body); font-weight: bold; }
.form-group input:focus, .form-group select:focus { border-color: var(--red); outline: none; }
.submit-btn { width: 100%; background-color: var(--red); color: white; border: none; padding: 15px; font-family: var(--font-head); font-size: 1.3rem; cursor: pointer; transition: 0.3s; letter-spacing: 1px; }
.submit-btn:hover { background-color: var(--dark-red); }

/* Legal */
.legal-doc { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.legal-doc h1 { font-family: var(--font-head); color: var(--grey); margin-bottom: 20px; }
.legal-doc h3 { font-family: var(--font-head); color: var(--red); margin-top: 30px; margin-bottom: 10px; }

/* Footer */
.axis-footer { background-color: var(--dark-grey); color: #7f8c8d; padding: 60px 0 20px; text-align: center; margin-top: auto; border-top: 5px solid var(--red); }
.brand-f { font-family: var(--font-head); font-size: 2rem; color: var(--white); margin-bottom: 20px; letter-spacing: 2px; }
.links-f a { color: #bdc3c7; margin: 0 15px; font-family: var(--font-head); text-transform: uppercase; }
.links-f a:hover { color: var(--red); }
.copy { margin-top: 30px; font-size: 0.8rem; }

@media (max-width: 900px) {
    .axis-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .service-grid, .about-split, .testimonials-grid, .quote-container, .form-row { grid-template-columns: 1fr; flex-direction: column; }
    .quote-info, .industrial-form { padding: 30px; }
}