/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; color: #333; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.topbar { background: #1a1a2e; color: #ccc; font-size: 13px; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; gap: 12px; font-size: 15px; }
.topbar-right a { color: #ccc; transition: color 0.3s; }
.topbar-right a:hover { color: #e8a020; }

/* ===== NAVBAR ===== */
.navbar { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; }
.logo-text { font-size: 22px; font-weight: 800; color: #1a1a2e; letter-spacing: 1px; }
.logo-accent { color: #e8a020; }
.nav-logo { height: 55px; width: auto; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 5px; }
.nav-links li a { padding: 8px 14px; border-radius: 4px; font-size: 14px; font-weight: 500; color: #333; transition: all 0.3s; display: block; }
.nav-links li a:hover { color: #e8a020; }
.nav-btn { background: #e8a020 !important; color: #fff !important; border-radius: 5px !important; }
.nav-btn:hover { background: #c8880e !important; }
.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; min-width: 240px; box-shadow: 0 5px 20px rgba(0,0,0,0.15); border-radius: 6px; z-index: 999; padding: 8px 0; }
.dropdown-menu li a { padding: 10px 18px; font-size: 13px; color: #333; display: block; }
.dropdown-menu li a:hover { background: #f5f5f5; color: #e8a020; }
.dropdown:hover .dropdown-menu { display: block; }
.hamburger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: #1a1a2e; }

/* ===== HERO ===== */
.hero { position: relative; height: 600px; overflow: hidden; }
.hero-slides { width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
.slide.active { opacity: 1; }
.slide-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.slide-content { position: relative; z-index: 2; max-width: 650px; margin: 0 auto; top: 50%; transform: translateY(-50%); text-align: center; color: #fff; padding: 0 20px; }
.slide-content h1 { font-size: 42px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.slide-content p { font-size: 17px; margin-bottom: 28px; opacity: 0.9; }
.slide-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: #e8a020; color: #fff; padding: 12px 28px; border-radius: 5px; font-weight: 600; transition: background 0.3s; display: inline-block; }
.btn-primary:hover { background: #c8880e; }
.btn-outline { border: 2px solid #fff; color: #fff; padding: 12px 28px; border-radius: 5px; font-weight: 600; transition: all 0.3s; display: inline-block; }
.btn-outline:hover { background: #fff; color: #333; }
.btn-outline-dark { border: 2px solid #1a1a2e; color: #1a1a2e; padding: 12px 28px; border-radius: 5px; font-weight: 600; transition: all 0.3s; display: inline-block; }
.btn-outline-dark:hover { background: #1a1a2e; color: #fff; }
.slide-prev, .slide-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2); border: none; color: #fff; font-size: 18px; padding: 12px 16px; cursor: pointer; z-index: 10; border-radius: 4px; transition: background 0.3s; }
.slide-prev:hover, .slide-next:hover { background: #e8a020; }
.slide-prev { left: 20px; }
.slide-next { right: 20px; }
.slide-dots { position: absolute; bottom: 20px; width: 100%; text-align: center; z-index: 10; }
.dot { display: inline-block; width: 10px; height: 10px; background: rgba(255,255,255,0.5); border-radius: 50%; margin: 0 5px; cursor: pointer; transition: background 0.3s; }
.dot.active { background: #e8a020; }

/* ===== TRACK BAR ===== */
.track-bar { background: #1a1a2e; padding: 30px 0; }
.track-bar-inner { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.track-bar h3 { color: #fff; font-size: 20px; white-space: nowrap; }
.track-form { display: flex; flex: 1; gap: 10px; flex-wrap: wrap; }
.track-form input { flex: 1; padding: 12px 18px; border-radius: 5px; border: none; font-size: 15px; min-width: 200px; }
.track-form button { background: #e8a020; color: #fff; border: none; padding: 12px 24px; border-radius: 5px; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.3s; }
.track-form button:hover { background: #c8880e; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 36px; color: #1a1a2e; font-weight: 800; position: relative; display: inline-block; padding-bottom: 12px; }
.section-header h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: #e8a020; }

/* ===== SERVICES HOME ===== */
.services-section { padding: 80px 0; background: #f9f9f9; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: #fff; padding: 35px 25px; border-radius: 8px; box-shadow: 0 3px 15px rgba(0,0,0,0.07); text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.service-icon { width: 70px; height: 70px; background: #e8a020; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.service-icon i { font-size: 28px; color: #fff; }
.service-card h3 { font-size: 18px; color: #1a1a2e; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 18px; }
.read-more { color: #e8a020; font-weight: 600; font-size: 14px; }
.read-more:hover { text-decoration: underline; }

/* ===== WHY CHOOSE US ===== */
.why-us { padding: 80px 0; background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card { text-align: center; padding: 30px 20px; border: 1px solid #eee; border-radius: 8px; transition: border-color 0.3s; }
.why-card:hover { border-color: #e8a020; }
.why-card i { font-size: 36px; color: #e8a020; margin-bottom: 14px; display: block; }
.why-card h4 { font-size: 16px; color: #1a1a2e; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: #666; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 80px 0; background: #f9f9f9; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testi-card { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 3px 15px rgba(0,0,0,0.07); }
.testi-card p { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-card h4 { font-size: 15px; color: #1a1a2e; font-weight: 700; }
.testi-card span { font-size: 13px; color: #e8a020; }

/* ===== STATS ===== */
.stats { background: #1a1a2e; padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; text-align: center; }
.stat-item h2 { font-size: 38px; color: #e8a020; font-weight: 800; }
.stat-item p { color: #aaa; font-size: 14px; margin-top: 6px; }

/* ===== FOOTER ===== */
.footer { background: #1a1a2e; color: #aaa; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.footer-logo-text { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-logo-img { height: 50px; width: auto; object-fit: contain; margin-bottom: 14px; filter: brightness(0) invert(1); display: block; }
.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 10px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: #aaa; transition: color 0.3s; }
.footer-col ul li a:hover { color: #e8a020; }
.footer-socials { display: flex; gap: 12px; margin-top: 14px; }
.footer-socials a { color: #aaa; font-size: 18px; transition: color 0.3s; }
.footer-socials a:hover { color: #e8a020; }
.footer-btn { display: inline-block; margin-top: 12px; padding: 9px 20px; background: #e8a020; color: #fff; border-radius: 5px; font-size: 13px; transition: background 0.3s; }
.footer-btn:hover { background: #c8880e; }
.footer-bottom { text-align: center; padding: 20px; margin-top: 40px; border-top: 1px solid #333; font-size: 13px; }

/* ===== PAGE BANNER ===== */
.page-banner { background: #1a1a2e; padding: 60px 0; text-align: center; color: #fff; }
.page-banner h1 { font-size: 38px; font-weight: 800; margin-bottom: 10px; }
.page-banner .breadcrumb { font-size: 14px; color: #aaa; }
.page-banner .breadcrumb a { color: #e8a020; }

/* ===== ABOUT PAGE ===== */
.about-profile { padding: 80px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.section-tag { color: #e8a020; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; display: block; }
.about-text h2 { font-size: 26px; color: #1a1a2e; font-weight: 700; margin-bottom: 20px; line-height: 1.4; }
.about-text p { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 14px; }
.about-image img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.mvv-section { padding: 80px 0; background: #f9f9f9; }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.mvv-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 3px 15px rgba(0,0,0,0.07); transition: transform 0.3s; }
.mvv-card:hover { transform: translateY(-5px); }
.mvv-img { height: 200px; overflow: hidden; }
.mvv-img img { width: 100%; height: 100%; object-fit: cover; }
.mvv-body { padding: 25px; text-align: center; }
.mvv-body i { font-size: 30px; color: #e8a020; margin-bottom: 12px; display: block; }
.mvv-body h3 { font-size: 18px; color: #1a1a2e; margin-bottom: 10px; font-weight: 700; }
.mvv-body p { font-size: 14px; color: #666; line-height: 1.7; }
.safety-section { padding: 80px 0; background: #fff; }
.safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.safety-card { padding: 40px; background: #f9f9f9; border-radius: 10px; border-left: 4px solid #e8a020; }
.safety-card i { font-size: 36px; color: #e8a020; margin-bottom: 16px; display: block; }
.safety-card h3 { font-size: 22px; color: #1a1a2e; font-weight: 700; margin-bottom: 14px; }
.safety-card p { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 10px; }

/* ===== SERVICES DETAIL PAGE ===== */
.services-detail { padding: 80px 0; background: #fff; }
.svc-row { display: flex; gap: 60px; align-items: flex-start; margin-bottom: 80px; padding-bottom: 80px; border-bottom: 1px solid #eee; }
.svc-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.svc-img { flex: 0 0 45%; }
.svc-img img { width: 100%; height: 320px; object-fit: cover; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); display: block; }
.svc-text { flex: 1; }
.service-detail-icon { width: 60px; height: 60px; background: #e8a020; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-detail-icon i { font-size: 24px; color: #fff; }
.svc-text h2 { font-size: 28px; color: #1a1a2e; font-weight: 800; margin-bottom: 16px; }
.svc-text p { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 14px; }
.service-features { margin: 20px 0 24px; }
.service-features li { font-size: 14px; color: #444; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.service-features li i { color: #e8a020; font-size: 13px; flex-shrink: 0; }

/* ===== CALL TO ACTION ===== */
.cta-section { background: #f0f4ff; padding: 70px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-text h2 { font-size: 30px; color: #1a1a2e; font-weight: 800; margin-bottom: 8px; }
.cta-text p { font-size: 15px; color: #555; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== TRACKING PAGE ===== */
.tracking-section { padding: 80px 0; background: #f9f9f9; }
.tracking-wrapper { background: #fff; border-radius: 12px; padding: 50px; box-shadow: 0 5px 25px rgba(0,0,0,0.08); margin-bottom: 50px; }
.tracking-form-box h3 { font-size: 24px; color: #1a1a2e; font-weight: 800; margin-bottom: 14px; }
.tracking-form-box p { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 24px; }
.tracking-input-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.tracking-input-row input { flex: 1; padding: 14px 20px; border: 2px solid #e0e0e0; border-radius: 6px; font-size: 15px; min-width: 250px; outline: none; transition: border-color 0.3s; }
.tracking-input-row input:focus { border-color: #e8a020; }
.tracking-input-row button { background: #e8a020; color: #fff; border: none; padding: 14px 28px; border-radius: 6px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.3s; white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; }
.tracking-input-row button:hover { background: #c8880e; }
.track-hint { font-size: 13px; color: #999; }
.track-hint strong { color: #e8a020; }

/* Result Box */
.tracking-result { margin-top: 40px; border-top: 2px solid #f0f0f0; padding-top: 40px; }
.result-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 16px; }
.result-label { font-size: 12px; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.result-header h3 { font-size: 22px; color: #1a1a2e; font-weight: 800; }
.result-status-badge { padding: 8px 20px; border-radius: 30px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.badge-transit { background: #fff3cd; color: #856404; }
.badge-delivered { background: #d1e7dd; color: #0a5c36; }
.badge-pending { background: #f8d7da; color: #721c24; }
.result-details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.result-detail-item { background: #f9f9f9; padding: 16px 20px; border-radius: 8px; }
.result-value { font-size: 15px; color: #1a1a2e; font-weight: 600; }

/* ===== DESTINATION BOX ===== */
.destination-box { background: #f0f7ff; border: 2px solid #d0e8ff; border-radius: 10px; padding: 30px; margin-bottom: 30px; }
.destination-box-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.destination-box-header i { font-size: 22px; color: #e8a020; }
.destination-box-header h4 { font-size: 18px; color: #1a1a2e; font-weight: 700; }
.destination-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.destination-item { background: #fff; padding: 14px 18px; border-radius: 8px; border: 1px solid #e0e8f0; }

/* ===== PACKAGE PHOTOS ===== */
.package-photos-box { background: #fff; border: 2px solid #eee; border-radius: 10px; padding: 30px; margin-bottom: 36px; }
.package-photos-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.package-photos-header i { font-size: 22px; color: #e8a020; }
.package-photos-header h4 { font-size: 18px; color: #1a1a2e; font-weight: 700; }
.photos-hint { font-size: 13px; color: #999; margin-left: auto; }
.package-photos-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; width: 100%; }
.photo-slot { display: flex; align-items: center; justify-content: center; border: 2px dashed #ddd; border-radius: 10px; overflow: hidden; cursor: pointer; position: relative; min-height: 200px; background: #fafafa; transition: border-color 0.3s, background 0.3s; width: 100%; }
.photo-slot:hover { border-color: #e8a020; background: #fff8ee; }
.photo-slot img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; border-radius: 8px; }
.photo-placeholder { text-align: center; color: #bbb; pointer-events: none; padding: 20px; }
.photo-placeholder i { font-size: 36px; margin-bottom: 10px; display: block; color: #ddd; }
.photo-placeholder p { font-size: 14px; font-weight: 600; color: #bbb; margin-bottom: 4px; }
.photo-placeholder span { font-size: 12px; color: #ccc; }
.photo-slot:hover .photo-placeholder i { color: #e8a020; }
.photo-slot:hover .photo-placeholder p { color: #e8a020; }
.photo-actions { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.6); padding: 10px; text-align: center; }
.photo-remove-btn { background: #e74c3c; color: #fff; border: none; padding: 6px 14px; border-radius: 5px; font-size: 12px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: background 0.3s; }
.photo-remove-btn:hover { background: #c0392b; }

/* Tracking Steps */
.tracking-steps h4 { font-size: 18px; color: #1a1a2e; font-weight: 700; margin-bottom: 24px; }
.steps-container { display: flex; flex-direction: column; gap: 0; }
.step-item { display: flex; gap: 20px; align-items: flex-start; position: relative; }
.step-item:not(:last-child)::before { content: ''; position: absolute; left: 17px; top: 36px; width: 2px; height: calc(100% + 4px); background: #e0e0e0; z-index: 0; }
.step-item.completed:not(:last-child)::before { background: #e8a020; }
.step-dot { width: 36px; height: 36px; border-radius: 50%; border: 3px solid #e0e0e0; background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; font-size: 13px; color: #ccc; }
.step-item.completed .step-dot { border-color: #e8a020; background: #e8a020; color: #fff; }
.step-item.active .step-dot { border-color: #e8a020; background: #fff; color: #e8a020; }
.step-body { padding-bottom: 28px; }
.step-title { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
.step-item.pending .step-title { color: #aaa; }
.step-date { font-size: 13px; color: #999; margin-bottom: 4px; }
.step-location { font-size: 13px; color: #555; }

/* Error Box */
.tracking-error { margin-top: 40px; border-top: 2px solid #f0f0f0; padding-top: 40px; text-align: center; }
.tracking-error i { font-size: 50px; color: #e74c3c; margin-bottom: 16px; display: block; }
.tracking-error h3 { font-size: 22px; color: #1a1a2e; font-weight: 800; margin-bottom: 10px; }
.tracking-error p { font-size: 14px; color: #555; margin-bottom: 24px; }
.tracking-img-wrap img { width: 100%; height: 350px; object-fit: cover; border-radius: 12px; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 80px 0; background: #f9f9f9; }
.offices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
.office-card { background: #fff; border-radius: 10px; padding: 35px 30px; box-shadow: 0 3px 15px rgba(0,0,0,0.07); text-align: center; transition: transform 0.3s; }
.office-card:hover { transform: translateY(-5px); }
.office-icon { width: 65px; height: 65px; background: #1a1a2e; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.office-icon i { font-size: 26px; color: #e8a020; }
.office-card h3 { font-size: 18px; color: #1a1a2e; font-weight: 700; margin-bottom: 16px; }
.office-details { text-align: left; margin-bottom: 20px; }
.office-details li { font-size: 13px; color: #555; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.office-details li i { color: #e8a020; margin-top: 2px; flex-shrink: 0; }
.whatsapp-btn { display: inline-flex; align-items: center; gap: 8px; background: #25d366; color: #fff; padding: 10px 20px; border-radius: 5px; font-size: 14px; font-weight: 600; transition: background 0.3s; }
.whatsapp-btn:hover { background: #1da851; }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: start; }
.contact-form-box { background: #fff; border-radius: 10px; padding: 40px; box-shadow: 0 3px 15px rgba(0,0,0,0.07); }
.contact-form-box h2 { font-size: 26px; color: #1a1a2e; font-weight: 800; margin-bottom: 8px; }
.contact-form-box > p { font-size: 14px; color: #666; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 13px; font-weight: 600; color: #333; margin-bottom: 7px; }
.form-group input, .form-group textarea { padding: 12px 16px; border: 2px solid #e0e0e0; border-radius: 6px; font-size: 14px; outline: none; transition: border-color 0.3s; font-family: inherit; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: #e8a020; }
.contact-form > .form-group { margin-bottom: 20px; }
.contact-submit-btn { background: #e8a020; color: #fff; border: none; padding: 14px 32px; border-radius: 6px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.3s; display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; }
.contact-submit-btn:hover { background: #c8880e; }
.form-success { margin-top: 20px; background: #d1e7dd; color: #0a5c36; padding: 16px 20px; border-radius: 8px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.form-success i { font-size: 20px; }
.contact-info-box { background: #1a1a2e; border-radius: 10px; padding: 40px; color: #aaa; }
.contact-info-box h2 { font-size: 26px; color: #fff; font-weight: 800; margin-bottom: 8px; }
.contact-info-box > p { font-size: 14px; color: #aaa; margin-bottom: 30px; line-height: 1.7; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 30px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon { width: 44px; height: 44px; background: rgba(232,160,32,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon i { font-size: 18px; color: #e8a020; }
.contact-info-item h4 { font-size: 14px; color: #fff; font-weight: 700; margin-bottom: 4px; }
.contact-info-item p { font-size: 13px; color: #aaa; line-height: 1.6; }
.contact-socials { display: flex; gap: 12px; }
.contact-socials a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #aaa; font-size: 18px; transition: all 0.3s; }
.contact-socials a:hover { background: #e8a020; color: #fff; }

/* ===== LOGIN PAGE ===== */
.login-section { display: flex; min-height: calc(100vh - 160px); }
.login-left { flex: 1; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%); display: flex; align-items: center; justify-content: center; padding: 60px 50px; }
.login-left-content { max-width: 450px; color: #fff; }
.login-left-content h1 { font-size: 40px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.login-left-content > p { font-size: 15px; color: #aaa; line-height: 1.8; margin-bottom: 36px; }
.login-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 50px; }
.login-features li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: #ddd; }
.login-features li i { color: #e8a020; font-size: 18px; }
.login-left-footer p { font-size: 14px; color: #aaa; margin-bottom: 14px; }
.login-right { flex: 0 0 480px; background: #f9f9f9; display: flex; align-items: center; justify-content: center; padding: 60px 40px; }
.login-box { width: 100%; max-width: 400px; }
.login-logo { margin-bottom: 28px; }
.login-box h2 { font-size: 28px; color: #1a1a2e; font-weight: 800; margin-bottom: 8px; }
.login-subtitle { font-size: 14px; color: #666; margin-bottom: 32px; }
.login-form { display: flex; flex-direction: column; gap: 20px; }
.login-form-group { display: flex; flex-direction: column; gap: 7px; }
.login-form-group label { font-size: 13px; font-weight: 600; color: #333; }
.input-icon-wrap { position: relative; display: flex; align-items: center; }
.input-icon-wrap > i:first-child { position: absolute; left: 14px; color: #aaa; font-size: 15px; z-index: 1; }
.input-icon-wrap input { width: 100%; padding: 13px 16px 13px 42px; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 14px; outline: none; transition: border-color 0.3s; background: #fff; font-family: inherit; }
.input-icon-wrap input:focus { border-color: #e8a020; }
.toggle-password { position: absolute; right: 14px; background: none; border: none; cursor: pointer; color: #aaa; font-size: 15px; padding: 0; transition: color 0.3s; }
.toggle-password:hover { color: #e8a020; }
.login-options { display: flex; justify-content: space-between; align-items: center; }
.remember-me { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #555; cursor: pointer; }
.remember-me input { width: 16px; height: 16px; accent-color: #e8a020; cursor: pointer; }
.forgot-link { font-size: 13px; color: #e8a020; }
.forgot-link:hover { text-decoration: underline; }
.login-btn { background: #e8a020; color: #fff; border: none; padding: 14px; border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; transition: background 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; margin-top: 8px; }
.login-btn:hover { background: #c8880e; }
.login-error { background: #f8d7da; color: #721c24; padding: 14px 16px; border-radius: 8px; font-size: 13px; display: flex; align-items: center; gap: 10px; }
.login-error i { font-size: 16px; flex-shrink: 0; }
.login-success { background: #d1e7dd; color: #0a5c36; padding: 14px 16px; border-radius: 8px; font-size: 13px; display: flex; align-items: center; gap: 10px; }
.login-hint { font-size: 12px; color: #999; margin-top: 20px; background: #f5f5f5; padding: 12px 16px; border-radius: 8px; line-height: 1.6; }
.login-hint strong { color: #1a1a2e; }
.login-divider { text-align: center; margin: 20px 0; position: relative; }
.login-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: #e0e0e0; }
.login-divider span { background: #f9f9f9; padding: 0 14px; color: #aaa; font-size: 13px; position: relative; }
.track-instead-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 13px; border: 2px solid #1a1a2e; border-radius: 8px; color: #1a1a2e; font-size: 14px; font-weight: 600; transition: all 0.3s; }
.track-instead-btn:hover { background: #1a1a2e; color: #fff; }

/* ===== STEP PHOTOS (on tracking page) ===== */
.step-photo { margin-top: 12px; }
.step-photo img { width: 140px; height: 100px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid #eee; transition: transform 0.2s, border-color 0.2s; }
.step-photo img:hover { transform: scale(1.05); border-color: #e8a020; }

/* ===== PHOTO MODAL ===== */
.photo-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); display: flex; align-items: center; justify-content: center; z-index: 9999; cursor: pointer; }
.photo-modal-img { max-width: 90%; max-height: 85%; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.photo-modal-close { position: absolute; top: 20px; right: 30px; background: none; border: none; color: #fff; font-size: 40px; cursor: pointer; line-height: 1; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .login-section { flex-direction: column; }
  .login-left { padding: 50px 30px; }
  .login-right { flex: none; width: 100%; padding: 50px 30px; }
  .svc-row { flex-direction: column; gap: 30px; }
  .svc-img { flex: none; width: 100%; }
}
@media (max-width: 768px) {
  .topbar-left span:not(:first-child) { display: none; }
  .hamburger { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 12px 10px; border-bottom: 1px solid #f0f0f0; }
  .dropdown-menu { position: static; box-shadow: none; padding-left: 15px; }
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .services-grid, .why-grid, .testi-grid, .mvv-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .slide-content h1 { font-size: 30px; }
  .about-grid, .safety-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .tracking-wrapper { padding: 30px 20px; }
  .result-details-grid { grid-template-columns: 1fr 1fr; }
  .result-header { flex-direction: column; align-items: flex-start; }
  .offices-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .destination-grid { grid-template-columns: 1fr 1fr; }
  .package-photos-grid { grid-template-columns: 1fr 1fr; }
  .photos-hint { display: none; }
}
@media (max-width: 480px) {
  .footer-grid, .services-grid, .why-grid, .testi-grid, .stats-grid, .mvv-grid { grid-template-columns: 1fr; }
  .hero { height: 450px; }
  .slide-content h1 { font-size: 24px; }
  .track-bar-inner { flex-direction: column; align-items: flex-start; }
  .result-details-grid, .destination-grid, .package-photos-grid { grid-template-columns: 1fr; }
}
/* ===== ADMIN PAGE ===== */
.admin-topbar { background: #1a1a2e; padding: 16px 0; }
.admin-topbar-inner { display: flex; align-items: center; justify-content: space-between; }
.admin-topbar-right { display: flex; align-items: center; gap: 20px; }
.admin-topbar-right > span { color: #e8a020; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.admin-logout-btn { background: rgba(255,255,255,0.1); color: #fff; padding: 8px 18px; border-radius: 6px; font-size: 13px; display: flex; align-items: center; gap: 8px; transition: background 0.3s; }
.admin-logout-btn:hover { background: rgba(255,255,255,0.2); }

.admin-section { padding: 50px 0 80px; background: #f9f9f9; min-height: 80vh; }
.admin-header { margin-bottom: 30px; }
.admin-header h1 { font-size: 28px; color: #1a1a2e; font-weight: 800; margin-bottom: 8px; display: flex; align-items: center; gap: 12px; }
.admin-header p { font-size: 14px; color: #666; }

.admin-search-box { background: #fff; border-radius: 10px; padding: 30px; box-shadow: 0 3px 15px rgba(0,0,0,0.07); margin-bottom: 30px; }

.admin-not-found { background: #fff; border-radius: 10px; padding: 50px; text-align: center; box-shadow: 0 3px 15px rgba(0,0,0,0.07); }
.admin-not-found i { font-size: 50px; color: #e74c3c; margin-bottom: 16px; display: block; }
.admin-not-found h3 { font-size: 20px; color: #1a1a2e; margin-bottom: 8px; }
.admin-not-found p { font-size: 14px; color: #666; }

.admin-editor { background: #fff; border-radius: 10px; padding: 35px; box-shadow: 0 3px 15px rgba(0,0,0,0.07); }
.admin-shipment-summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-bottom: 24px; border-bottom: 2px solid #f0f0f0; margin-bottom: 30px; }
.admin-shipment-summary h3 { font-size: 22px; color: #1a1a2e; font-weight: 800; }
.admin-shipment-summary h4 { font-size: 15px; color: #555; font-weight: 600; }

.admin-checkpoints-title { font-size: 18px; color: #1a1a2e; font-weight: 700; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.admin-checkpoints-sub { font-size: 13px; color: #888; margin-bottom: 26px; }

.admin-checkpoints-list { display: flex; flex-direction: column; gap: 16px; }
.admin-checkpoint-card { display: grid; grid-template-columns: 1fr 160px 180px; gap: 20px; align-items: center; background: #f9f9f9; border-radius: 10px; padding: 20px; border: 1px solid #eee; }
.admin-checkpoint-info { display: flex; gap: 14px; align-items: flex-start; }
.admin-checkpoint-status-dot { width: 14px; height: 14px; border-radius: 50%; background: #ccc; margin-top: 4px; flex-shrink: 0; }
.admin-checkpoint-status-dot.completed { background: #e8a020; }
.admin-checkpoint-status-dot.active { background: #2196f3; box-shadow: 0 0 0 4px rgba(33,150,243,0.2); }
.admin-checkpoint-info h4 { font-size: 15px; color: #1a1a2e; font-weight: 700; margin-bottom: 4px; }
.admin-checkpoint-info p { font-size: 13px; color: #888; margin-bottom: 2px; }
.admin-checkpoint-location { color: #555 !important; }

.admin-checkpoint-photo { display: flex; align-items: center; justify-content: center; }
.admin-checkpoint-img { width: 140px; height: 100px; object-fit: cover; border-radius: 8px; border: 2px solid #e0e0e0; }
.admin-checkpoint-no-photo { width: 140px; height: 100px; border: 2px dashed #ddd; border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #bbb; gap: 6px; }
.admin-checkpoint-no-photo i { font-size: 22px; }
.admin-checkpoint-no-photo span { font-size: 11px; }

.admin-checkpoint-actions { display: flex; flex-direction: column; gap: 8px; }
.admin-upload-btn { background: #e8a020; color: #fff; border: none; padding: 10px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.3s; }
.admin-upload-btn:hover { background: #c8880e; }
.admin-remove-btn { background: #fff; color: #e74c3c; border: 1px solid #e74c3c; padding: 9px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s; }
.admin-remove-btn:hover { background: #e74c3c; color: #fff; }

/* Toast notification */
.admin-toast { position: fixed; bottom: 30px; right: 30px; background: #1a1a2e; color: #fff; padding: 16px 24px; border-radius: 8px; font-size: 14px; display: flex; align-items: center; gap: 10px; box-shadow: 0 5px 25px rgba(0,0,0,0.2); opacity: 0; transform: translateY(20px); transition: all 0.3s; z-index: 9999; }
.admin-toast.show { opacity: 1; transform: translateY(0); }
.admin-toast i { color: #28a745; font-size: 18px; }

@media (max-width: 768px) {
  .admin-checkpoint-card { grid-template-columns: 1fr; text-align: center; }
  .admin-checkpoint-info { flex-direction: column; align-items: center; text-align: center; }
  .admin-checkpoint-photo { justify-content: center; }
}

/* ===== ADMIN TABS ===== */
.admin-tabs { display: flex; gap: 10px; margin-bottom: 30px; border-bottom: 2px solid #e0e0e0; }
.admin-tab-btn { background: none; border: none; padding: 14px 22px; font-size: 14px; font-weight: 600; color: #888; cursor: pointer; border-bottom: 3px solid transparent; transition: all 0.3s; display: flex; align-items: center; gap: 8px; }
.admin-tab-btn:hover { color: #1a1a2e; }
.admin-tab-btn.active { color: #e8a020; border-bottom-color: #e8a020; }

/* ===== ADMIN CREATE FORM ===== */
.admin-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.admin-form-grid .form-group select { padding: 12px 16px; border: 2px solid #e0e0e0; border-radius: 6px; font-size: 14px; outline: none; font-family: inherit; background: #fff; }
.admin-form-grid .form-group select:focus { border-color: #e8a020; }

.admin-new-checkpoint-row { display: grid; grid-template-columns: 1.3fr 1.3fr 1.3fr 1fr 50px; gap: 12px; margin-bottom: 12px; align-items: center; }
.admin-new-checkpoint-row input, .admin-new-checkpoint-row select { padding: 11px 14px; border: 2px solid #e0e0e0; border-radius: 6px; font-size: 13px; outline: none; font-family: inherit; }
.admin-new-checkpoint-row input:focus, .admin-new-checkpoint-row select:focus { border-color: #e8a020; }
.admin-remove-checkpoint-btn { background: #fff; border: 1px solid #e74c3c; color: #e74c3c; border-radius: 6px; padding: 11px; cursor: pointer; transition: all 0.3s; }
.admin-remove-checkpoint-btn:hover { background: #e74c3c; color: #fff; }

.admin-add-checkpoint-btn { background: #f0f4ff; color: #1a1a2e; border: 2px dashed #c0c8e0; padding: 12px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 8px; transition: all 0.3s; }
.admin-add-checkpoint-btn:hover { background: #e0e8ff; border-color: #e8a020; }

.admin-create-actions { margin-top: 30px; display: flex; justify-content: flex-end; }

.admin-create-success { margin-top: 24px; background: #d1e7dd; border: 2px solid #a3cfbb; border-radius: 10px; padding: 24px; display: flex; align-items: center; gap: 18px; }
.admin-create-success i { font-size: 36px; color: #0a5c36; flex-shrink: 0; }
.admin-create-success p { font-size: 14px; color: #0a5c36; margin-bottom: 6px; }
.admin-create-success h2 { font-size: 24px; color: #0a5c36; font-weight: 800; letter-spacing: 1px; }

@media (max-width: 768px) {
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-new-checkpoint-row { grid-template-columns: 1fr; }
}