/* Custom CSS for OM TRANSPORT - omtransportkol.com */
:root {
    --primary: #002B49;
    --secondary: #005691;
    --accent: #25D366;
    --light-bg: #F8F9FA;
    --text-dark: #2D3748;
    --text-muted: #718096;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: var(--text-dark); background-color: #FFF; line-height: 1.6; }

/* Top Notice Bar */
.top-bar { background-color: var(--primary); color: #FFF; padding: 8px 20px; font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; border-bottom: 1px solid rgba(255,255,255,0.1); }
.top-bar a { color: var(--accent); text-decoration: none; margin-left: 10px; }

/* Navigation */
header { background: #FFF; box-shadow: 0 2px 10px rgba(0,0,0,0.08); sticky: top; top: 0; z-index: 1000; }
.navbar { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; }
.logo { font-size: 24px; font-weight: 800; color: var(--primary); text-decoration: none; letter-spacing: 1px; }
.logo span { color: var(--secondary); font-size: 14px; display: block; font-weight: 400; }
nav a { color: var(--text-dark); text-decoration: none; margin-left: 25px; font-weight: 600; font-size: 15px; transition: color 0.3s; }
nav a:hover, nav a.active { color: var(--secondary); }

/* Banners */
.hero { background: linear-gradient(rgba(0, 43, 73, 0.75), rgba(0, 43, 73, 0.75)), url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; color: #FFF; text-align: center; padding: 100px 20px; }
.hero-page { background: linear-gradient(rgba(0, 43, 73, 0.8), rgba(0, 43, 73, 0.8)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; color: #FFF; text-align: center; padding: 60px 20px; }
.hero h1, .hero-page h1 { font-size: 38px; margin-bottom: 15px; font-weight: 700; }
.hero p, .hero-page p { font-size: 18px; max-width: 800px; margin: 0 auto; opacity: 0.9; }

/* Grid Layouts & Cards */
.container { max-width: 1200px; margin: 50px auto; padding: 0 20px; }
.section-title { text-align: center; font-size: 28px; color: var(--primary); margin-bottom: 40px; position: relative; }
.section-title::after { content: ''; width: 60px; height: 3px; background: var(--accent); display: block; margin: 10px auto 0; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.card { background: #FFF; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid #E2E8F0; transition: transform 0.3s; }
.card:hover { transform: translateY(-5px); }
.card img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 25px; }
.card-body h3 { color: var(--primary); margin-bottom: 10px; font-size: 20px; }

/* Information Tables and Legal Blocks */
.legal-box { background: var(--light-bg); border-left: 4px solid var(--primary); padding: 30px; border-radius: 4px; margin-bottom: 30px; }
.legal-box h2 { color: var(--primary); margin-bottom: 15px; }

/* Footer */
footer { background: #0A192F; color: #A8B2D1; padding: 50px 20px 20px; font-size: 14px; margin-top: 60px; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.footer-col h4 { color: #FFF; font-size: 18px; margin-bottom: 20px; border-bottom: 2px solid var(--secondary); padding-bottom: 8px; display: inline-block; }
.footer-col p { margin-bottom: 10px; line-height: 1.8; }
.footer-col a { color: #A8B2D1; text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent); }
.legal-footer { border-top: 1px solid rgba(255,255,255,0.1); text-align: center; margin-top: 40px; padding-top: 20px; font-size: 13px; }