/* Wrapper and Resets */
.maliyah-express-wrapper {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}
.maliyah-express-wrapper * { box-sizing: border-box; margin: 0; padding: 0; }
.mx-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.mx-section { padding: 80px 0; }
.mx-bg-light { background-color: #f9fafb; }
.text-center { text-align: center; }
.mx-flex-between { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.mx-flex { display: flex; gap: 20px; flex-wrap: wrap; }

/* Buttons & Badges */
.mx-btn { padding: 12px 24px; text-decoration: none; font-weight: bold; border-radius: 5px; display: inline-block; cursor: pointer; }
.mx-btn-orange { background-color: #f7941d; color: #fff; }
.mx-btn-orange:hover { background-color: #e08316; }
.mx-btn-outline { border: 2px solid #f7941d; color: #f7941d; padding: 8px 20px; text-decoration: none; border-radius: 4px; display: inline-block; font-weight: bold; margin-top: 15px; }
.mx-badge { background: #ffe4c4; color: #f7941d; padding: 3px 8px; font-size: 12px; border-radius: 4px; font-weight: bold; margin-left: 10px; }

/* Header */
.mx-header { padding: 20px 0; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.mx-logo { font-size: 24px; font-weight: bold; color: #111; }
.mx-nav a { text-decoration: none; color: #333; margin-right: 25px; font-weight: 500; }

/* Hero Section */
.mx-hero { background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1586528116311-ad8ed7c83a7f?q=80&w=1000&auto=format&fit=crop') center/cover; padding: 120px 0; color: #fff; }
.mx-hero h1 { font-size: 48px; margin-bottom: 20px; line-height: 1.2; }
.mx-hero p { font-size: 18px; margin-bottom: 30px; max-width: 600px; }

/* About Section */
.mx-about-text { flex: 1; min-width: 300px; }
.mx-about-text h4 { color: #f7941d; margin-bottom: 10px; }
.mx-about-text h2 { font-size: 32px; margin-bottom: 20px; }
.mx-stats { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; min-width: 300px; }
.mx-stat-box { background: #f9fafb; padding: 30px; text-align: center; border-radius: 8px; border-left: 4px solid #f7941d; }
.mx-stat-box h3 { font-size: 32px; color: #111; margin-bottom: 5px; }

/* Services Section */
.mx-section-title { text-align: center; margin-bottom: 50px; }
.mx-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.mx-card { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); text-align: left; }
.mx-card h3 { margin-bottom: 15px; font-size: 20px; }

/* Owners and Fleet */
.mx-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 50px; }
.mx-team-member { text-align: center; }
.mx-avatar { width: 100px; height: 100px; background: #ddd; border-radius: 50%; margin: 0 auto 15px auto; }
.mx-fleet-item { background: #f9fafb; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #333; }

/* Process */
.mx-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 40px; }
.mx-step { padding: 40px; background: #fff; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.mx-step h2 { color: #f7941d; font-size: 40px; opacity: 0.5; margin-bottom: 10px; }

/* Gallery */
.mx-gallery-img { height: 200px; background: #ddd; border-radius: 8px; background-image: url('https://images.unsplash.com/photo-1586528116311-ad8ed7c83a7f?q=80&w=500&auto=format&fit=crop'); background-size: cover; background-position: center; }

/* Footer */
.mx-footer { background: #111; color: #fff; padding: 60px 0 20px 0; }
.mx-footer h3, .mx-footer h4 { margin-bottom: 20px; color: #f7941d; }
.mx-footer ul { list-style: none; }
.mx-footer ul li { margin-bottom: 10px; opacity: 0.8; }
.mx-copyright { margin-top: 40px; padding-top: 20px; border-top: 1px solid #333; font-size: 14px; opacity: 0.6; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .mx-flex-between { flex-direction: column; text-align: center; }
    .mx-stats { grid-template-columns: 1fr; }
}