/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #222; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ========== CSS VARIABLES ========== */
:root {
  --red: #c0392b;
  --red-dark: #922b21;
  --black: #1a252f;
  --white: #fff;
  --gray-light: #f8f9fa;
  --gray: #eee;
  --text: #333;
  --text-muted: #666;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
}

/* ========== BUTTONS ========== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.25s; border: 2px solid transparent; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--red); border-color: #fff; }
.btn-white:hover { background: var(--gray-light); }
.btn-white-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-white-outline:hover { background: #fff; color: var(--red); }
.btn-outline-dark { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline-dark:hover { background: var(--black); color: #fff; }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 6px 14px; font-size: 12px; border-radius: 5px; display: inline-block; font-weight: 600; }

/* ========== NAVBAR ========== */
.navbar { position: fixed; top: 0; left: 0; width: 100%; background: #fff; z-index: 999; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1); transition: all 0.3s; }
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); }
.nav-container { max-width: 1280px; margin: auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 46px; width: auto; }
.logo-text { font-family: 'Raleway', sans-serif; font-weight: 900; font-size: 16px; color: var(--black); line-height: 1.1; }
.logo-text span { color: var(--red); display: block; font-size: 12px; font-weight: 700; letter-spacing: 2px; }
.nav-menu { display: flex; align-items: center; list-style: none; gap: 4px; }
.nav-link { padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--black); border-radius: 6px; transition: all 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--red); background: #fff0f0; }
.nav-btn { padding: 9px 20px; border-radius: 6px; font-size: 13px; font-weight: 600; }
.nav-btn-red { background: var(--red); color: #fff !important; }
.nav-btn-red:hover { background: var(--red-dark); }
.nav-btn-outline { border: 2px solid var(--black); color: var(--black) !important; background: transparent; }
.nav-btn-outline:hover { background: var(--black); color: #fff !important; }
.admin-link { color: var(--red) !important; }
.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 6px); left: 0; background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); min-width: 220px; padding: 8px 0; list-style: none; z-index: 100; }
.dropdown:hover .dropdown-menu { display: block; animation: fadeDown 0.2s ease; }
.dropdown-menu li a { display: flex; align-items: center; gap: 10px; padding: 10px 18px; font-size: 13px; font-weight: 500; color: var(--black); transition: all 0.2s; }
.dropdown-menu li a:hover { background: #fff0f0; color: var(--red); }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s; }
.translate-toggle { background: none; border: 1px solid #ddd; padding: 7px 12px; border-radius: 6px; font-size: 13px; cursor: pointer; color: var(--black); }
.translate-btn-wrap { margin-left: 4px; }

/* ========== HERO ========== */
.hero { min-height: 100vh; background: linear-gradient(135deg, #1a252f 0%, #2c3e50 40%, #922b21 100%); background-image: url('https://images.unsplash.com/photo-1494412519320-aa613dfb7738?w=1600&q=80'); background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: center; position: relative; padding-top: 70px; }
.hero-overlay { position: absolute; inset: 0; background: rgba(20, 30, 40, 0.75); }
.hero-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto 0 8%; padding: 60px 24px 30px; }
.hero-tagline { color: #e74c3c; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.hero h1 { font-family: 'Raleway', sans-serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: #e74c3c; }
.hero-sub { color: rgba(255, 255, 255, 0.8); font-size: 16px; line-height: 1.7; max-width: 560px; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-track-bar { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(8px); border-radius: 10px; padding: 16px 20px; max-width: 580px; border: 1px solid rgba(255, 255, 255, 0.2); }
.hero-track-form { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-track-form input { flex: 1; min-width: 200px; padding: 12px 16px; border-radius: 6px; border: none; font-size: 14px; outline: none; }
.hero-track-form button { padding: 12px 22px; background: var(--red); color: #fff; border: none; border-radius: 6px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.hero-stats { position: relative; z-index: 1; display: flex; justify-content: center; gap: 0; margin-top: auto; padding: 0 24px 40px; flex-wrap: wrap; }
.stat { text-align: center; padding: 20px 36px; border-right: 1px solid rgba(255, 255, 255, 0.15); }
.stat:last-child { border: none; }
.stat h3 { font-size: 2rem; font-weight: 800; color: #e74c3c; }
.stat p { color: rgba(255, 255, 255, 0.7); font-size: 12px; margin-top: 4px; }

/* ========== SECTIONS ========== */
.section { padding: 90px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag { background: #fff0f0; color: var(--red); font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--black); margin: 16px 0 12px; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ========== SERVICES GRID ========== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.service-card { background: #fff; border-radius: var(--radius); padding: 32px 24px; box-shadow: var(--shadow); transition: all 0.3s; border: 2px solid transparent; }
.service-card:hover { transform: translateY(-6px); border-color: var(--red); box-shadow: var(--shadow-lg); }
.service-icon { width: 64px; height: 64px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon i { font-size: 1.6rem; color: #fff; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 14px; line-height: 1.65; }
.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-weight: 600; font-size: 13px; margin-top: 16px; }

/* ========== WHY US ========== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-list { list-style: none; margin: 20px 0; }
.why-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--gray); font-size: 14px; }
.why-list li i { color: var(--red); }
.why-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ========== TRACK TEASER ========== */
.track-teaser { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); }
.track-teaser-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.track-teaser-text h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.track-teaser-text p { color: rgba(255, 255, 255, 0.85); max-width: 560px; line-height: 1.7; margin-bottom: 24px; }
.track-teaser-icon i { font-size: 6rem; color: rgba(255, 255, 255, 0.2); }

/* ========== PARTNERS ========== */
.partners-logos { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.partner-item { background: var(--gray-light); border: 2px solid var(--gray); border-radius: 8px; padding: 12px 24px; font-weight: 700; font-size: 14px; color: var(--black); transition: all 0.2s; }
.partner-item:hover { border-color: var(--red); color: var(--red); }

/* ========== TESTIMONIALS ========== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.testi-card { background: #fff; border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); border-top: 4px solid var(--red); }
.stars { color: #f39c12; font-size: 1.1rem; margin-bottom: 12px; }
.testi-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.testi-card strong { font-size: 13px; color: var(--black); }

/* ========== CTA ========== */
.cta-section { background: var(--black); text-align: center; }
.cta-section h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.cta-section p { color: rgba(255, 255, 255, 0.7); }

/* ========== PAGE HERO ========== */
.page-hero { min-height: 340px; background: linear-gradient(135deg, #1a252f, #c0392b); background-size: cover; background-position: center; position: relative; display: flex; align-items: flex-end; padding-bottom: 50px; padding-top: 70px; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(20, 30, 40, 0.7); }
.page-hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.page-hero-content h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 8px; }
.page-hero-content p { color: rgba(255, 255, 255, 0.8); font-size: 16px; }
.breadcrumb { margin-top: 12px; font-size: 13px; color: rgba(255, 255, 255, 0.6); }
.breadcrumb a { color: rgba(255, 255, 255, 0.7); }
.breadcrumb a:hover { color: #e74c3c; }

/* ========== ABOUT PAGE ========== */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-intro-grid p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.bg-dark-section { background: var(--black); }
.ceo-card { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; background: rgba(255, 255, 255, 0.05); border-radius: var(--radius); padding: 36px; }
.ceo-img-wrap img { width: 100%; border-radius: 12px; border: 4px solid var(--red); }
.ceo-text h3 { font-size: 1.4rem; color: #fff; font-weight: 800; }
.ceo-title { color: rgba(255, 255, 255, 0.6); font-size: 13px; margin: 6px 0 16px; line-height: 1.5; }
.ceo-text blockquote { border-left: 4px solid var(--red); padding-left: 16px; color: rgba(255, 255, 255, 0.8); font-style: italic; line-height: 1.8; margin-bottom: 16px; }
.ceo-text p { color: rgba(255, 255, 255, 0.7); font-size: 14px; line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.value-card { background: #fff; border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow); text-align: center; }
.value-card i { font-size: 2rem; color: var(--red); margin-bottom: 14px; }
.value-card h4 { font-weight: 700; margin-bottom: 8px; }
.value-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 2px; background: var(--red); opacity: 0.3; }
.timeline-item { display: grid; grid-template-columns: 80px 1fr; gap: 20px; margin-bottom: 32px; position: relative; }
.tl-year { font-size: 1rem; font-weight: 800; color: var(--red); padding-top: 4px; }
.tl-content h4 { font-weight: 700; margin-bottom: 6px; }
.tl-content p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ========== SERVICES DETAIL ========== */
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.service-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 20px; font-weight: 700; font-size: 13px; margin-bottom: 16px; }
.air-badge { background: #fff0f0; color: #c0392b; }
.sea-badge { background: #eaf4fd; color: #1a5276; }
.land-badge { background: #fef9e7; color: #784212; }
.security-badge { background: #f4f6f7; color: #1a252f; }
.service-detail-text h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 14px; }
.service-detail-text p { color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.service-features { list-style: none; }
.service-features li { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 1px solid var(--gray); font-size: 14px; color: var(--text); }
.service-features li i { color: var(--red); }
.bg-alt { background: var(--gray-light); }

/* ========== TRACKING ========== */
.track-card { background: #fff; border-radius: var(--radius); padding: 40px 36px; box-shadow: var(--shadow-lg); text-align: center; border-top: 4px solid var(--red); }
.track-card h2 { font-size: 1.5rem; font-weight: 800; margin: 16px 0 10px; }
.track-icon { font-size: 3rem; color: var(--red); margin-bottom: 8px; }
.track-input-wrap { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0 14px; align-items: center; position: relative; }
.track-input { flex: 1; min-width: 200px; padding: 14px 16px 14px 42px; border: 2px solid var(--gray); border-radius: 8px; font-size: 15px; outline: none; transition: border-color 0.2s; }
.track-input:focus { border-color: var(--red); }
.track-input-icon { position: absolute; left: 14px; color: var(--text-muted); font-size: 1.1rem; }
.track-help { margin-top: 12px; font-size: 13px; color: var(--text-muted); }
.track-help a { color: var(--red); }
.track-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.track-feat { text-align: center; padding: 24px 16px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.track-feat i { font-size: 2rem; color: var(--red); margin-bottom: 12px; }
.track-feat h4 { font-weight: 700; margin-bottom: 6px; }
.track-feat p { color: var(--text-muted); font-size: 13px; line-height: 1.6; }

/* ========== TRACKING RESULT ========== */
.track-result-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px; margin-bottom: 28px; }
.trh-label { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.trh-number { font-size: 1.6rem; font-weight: 800; color: var(--black); margin: 4px 0; }
.status-badge { display: inline-flex; align-items: center; gap: 6px; color: #fff; padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; }
.trh-right { display: flex; gap: 10px; flex-wrap: wrap; }

/* STATUS PROGRESS */
.status-progress { display: flex; align-items: center; margin: 28px 0 36px; flex-wrap: wrap; gap: 0; }
.sp-step { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; min-width: 90px; }
.sp-dot { width: 42px; height: 42px; border-radius: 50%; background: #eee; display: flex; align-items: center; justify-content: center; color: #aaa; font-size: 1rem; border: 3px solid #ddd; transition: all 0.3s; }
.sp-step.done .sp-dot { background: #27ae60; color: #fff; border-color: #27ae60; }
.sp-step.active .sp-dot { color: #fff; border-width: 3px; }
.sp-step span { font-size: 11px; font-weight: 600; color: #aaa; text-align: center; }
.sp-step.done span, .sp-step.active span { color: var(--black); }
.sp-line { flex: 1; height: 3px; background: #eee; min-width: 20px; margin: 0 2px; margin-bottom: 24px; }
.sp-line.done { background: #27ae60; }

/* SHIPMENT DETAILS */
.shipment-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.sd-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.sd-card h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.sd-card h3 i { color: var(--red); }
.sd-table { width: 100%; border-collapse: collapse; }
.sd-table td { padding: 7px 0; font-size: 13px; border-bottom: 1px solid var(--gray); }
.sd-table td:first-child { color: var(--text-muted); font-weight: 600; width: 45%; }

/* TRACKING HISTORY */
.track-history { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); margin-bottom: 24px; }
.track-history h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.track-history h3 i { color: var(--red); }
.th-item { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--gray); }
.th-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 4px; }
.th-date { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.th-location { font-size: 13px; color: var(--black); margin-bottom: 4px; }
.th-status { font-size: 13px; color: var(--text-muted); }

.map-section { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); margin-bottom: 24px; }
.map-section h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.map-section h3 i { color: var(--red); }
.route-section { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); margin-bottom: 24px; }
.route-section h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }

/* ========== AUTH ========== */
.auth-section { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 70px); margin-top: 70px; }
.auth-left { position: relative; overflow: hidden; }
.auth-left img { width: 100%; height: 100%; object-fit: cover; }
.auth-left-overlay { position: absolute; inset: 0; background: rgba(20, 30, 40, 0.7); display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; }
.auth-left-overlay h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.auth-left-overlay p { color: rgba(255, 255, 255, 0.8); line-height: 1.7; }
.auth-right { display: flex; align-items: center; justify-content: center; padding: 40px 24px; background: var(--gray-light); }
.auth-box { background: #fff; border-radius: var(--radius); padding: 40px 36px; box-shadow: var(--shadow-lg); width: 100%; max-width: 440px; }
.auth-logo { height: 52px; margin: 0 auto 16px; }
.auth-box h2 { font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: 6px; }
.auth-sub { text-align: center; font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.auth-sub a { color: var(--red); font-weight: 600; }
.auth-form .form-group { margin-bottom: 16px; }
.auth-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--black); }
.auth-form input { width: 100%; padding: 12px 14px; border: 2px solid var(--gray); border-radius: 8px; font-size: 14px; outline: none; transition: border 0.2s; }
.auth-form input:focus { border-color: var(--red); }

/* ========== DASHBOARD ========== */
.dashboard-section { padding: 36px 0 80px; margin-top: 70px; min-height: 80vh; }
.dash-header { margin-bottom: 28px; }
.dash-header h1 { font-size: 1.8rem; font-weight: 800; color: var(--black); }
.dash-header p { color: var(--text-muted); margin-top: 4px; }
.dash-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-bottom: 36px; }
.ds-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); text-align: center; border-top: 4px solid var(--red); }
.ds-card i { font-size: 2rem; color: var(--red); margin-bottom: 10px; }
.ds-card h3 { font-size: 1.8rem; font-weight: 800; color: var(--black); }
.ds-card p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.dash-table-wrap { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.dash-table-wrap h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 18px; }
.dash-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.dash-table th { background: #f8f9fa; padding: 10px 14px; text-align: left; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid var(--gray); }
.dash-table td { padding: 12px 14px; border-bottom: 1px solid var(--gray); vertical-align: middle; }
.dash-table tr:hover td { background: #fff9f9; }
.empty-state { text-align: center; padding: 50px; color: var(--text-muted); }
.empty-state i { font-size: 3rem; margin-bottom: 14px; opacity: 0.3; }

/* ========== BADGES ========== */
.badge-status { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.status-pending { background: #fef9e7; color: #b7950b; }
.status-in_transit { background: #eaf4fd; color: #1a5276; }
.status-on_hold { background: #fff0f0; color: #c0392b; }
.status-out_for_delivery { background: #f5eef8; color: #6c3483; }
.status-delivered { background: #eafaf1; color: #1e8449; }
.status-cancelled { background: #f4f6f7; color: #707b7c; }

/* ========== ADMIN FORM ========== */
.admin-form .form-section { background: #fff; border-radius: var(--radius); padding: 28px; margin-bottom: 24px; box-shadow: var(--shadow); }
.admin-form .form-section h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; border-bottom: 2px solid var(--gray); padding-bottom: 10px; }
.admin-form .form-section h3 i { color: var(--red); }
.admin-form .form-group { margin-bottom: 14px; }
.admin-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: var(--black); }
.admin-form input,
.admin-form select,
.admin-form textarea { width: 100%; padding: 11px 14px; border: 2px solid var(--gray); border-radius: 8px; font-size: 14px; outline: none; font-family: inherit; transition: border 0.2s; }
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus { border-color: var(--red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ========== ALERTS ========== */
.alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 14px; }
.alert-danger { background: #fff0f0; color: #c0392b; border-left: 4px solid #c0392b; }
.alert-success { background: #eafaf1; color: #1e8449; border-left: 4px solid #27ae60; }

/* ========== FOOTER ========== */
.site-footer { background: var(--black); color: rgba(255, 255, 255, 0.75); padding: 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding: 70px 60px 48px; max-width: 1280px; margin: auto; }
.footer-brand h3 { font-size: 1rem; font-weight: 700; color: #fff; margin: 12px 0 10px; }
.footer-brand p { font-size: 13px; line-height: 1.7; }
.footer-logo { height: 50px; margin-bottom: 10px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 34px; height: 34px; background: rgba(255, 255, 255, 0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; transition: 0.2s; }
.footer-social a:hover { background: var(--red); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 13px; }
.footer-col ul li a { color: rgba(255, 255, 255, 0.7); transition: 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--red); }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; margin-bottom: 12px; line-height: 1.5; }
.contact-list li i { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.contact-list li a { color: rgba(255, 255, 255, 0.7); }
.footer-partners { border-top: 1px solid rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 24px 60px; }
.footer-partners p { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255, 255, 255, 0.4); margin-bottom: 14px; }
.partners-row { display: flex; flex-wrap: wrap; gap: 10px; }
.partners-row span { background: rgba(255, 255, 255, 0.07); border-radius: 6px; padding: 6px 14px; font-size: 12px; font-weight: 600; color: rgba(255, 255, 255, 0.6); border: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bottom { text-align: center; padding: 20px; font-size: 12px; color: rgba(255, 255, 255, 0.4); }

/* ========== ANIMATIONS ========== */
.animate-fadeup { animation: fadeUp 0.8s ease both; }
.animate-card { opacity: 0; transform: translateY(24px); transition: all 0.5s ease; }
.animate-card.visible { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .why-grid, .about-intro-grid, .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid.reverse { direction: ltr; }
  .ceo-card { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #fff; padding: 16px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; padding: 0 0 0 16px; }
  .hero-content { margin: 0; }
  .auth-section { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .track-result-header { flex-direction: column; }
  .shipment-details-grid { grid-template-columns: 1fr; }
  .status-progress { overflow-x: auto; flex-wrap: nowrap; }
  .footer-top { grid-template-columns: 1fr; padding: 40px 24px; }
  .footer-partners { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .track-teaser-inner { flex-direction: column; text-align: center; }
  .track-teaser-icon { display: none; }
}
/* ========== ROUTE TIMELINE ========== */
.route-timeline { position: relative; padding: 4px 0; }

.route-stop {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  padding-bottom: 30px;
}
.route-stop:last-child { padding-bottom: 0; }

.rs-line {
  position: absolute;
  left: 19px;
  top: 42px;
  width: 2px;
  bottom: 0;
  background: var(--gray);
  z-index: 0;
}
.rs-line-done { background: #27ae60; }

.rs-dot {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
  background: #ccc;
}

.rs-content {
  flex: 1;
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow);
}
.rs-upcoming .rs-content { opacity: .6; }

.rs-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.rs-location {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}

.rs-date {
  font-size: 12px;
  color: var(--text-muted);
  margin: 4px 0;
}

.rs-comment {
  margin-top: 10px;
  background: #fef9e7;
  border-left: 3px solid #f39c12;
  padding: 9px 13px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.rs-comment i { color: #f39c12; margin-right: 6px; }

/* responsive */
@media (max-width: 768px) {
  .rs-content { padding: 12px 14px; }
  .rs-location { font-size: 14px; }
}