:root {
    --asphalt: #2D3436;
    --orange: #FF7675;
    --concrete: #dfe6e9;
    --white: #ffffff;
    --dark-text: #2d3436;
    
    --font-head: 'Barlow', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    color: var(--dark-text);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Status Bar */
.status-bar { background: var(--asphalt); color: #b2bec3; font-size: 0.75rem; padding: 5px 0; font-weight: bold; letter-spacing: 1px; }
.status-flex { display: flex; justify-content: space-between; }

/* Header */
.track-header { padding: 20px 0; background: var(--white); border-bottom: 2px solid var(--asphalt); position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--asphalt); letter-spacing: -1px; }
.orange { color: var(--orange); }

.urban-nav a { margin-left: 20px; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; color: var(--asphalt); }
.urban-nav a:hover, .urban-nav a.active { color: var(--orange); }

.btn-orange { background: var(--orange); color: var(--white) !important; padding: 10px 20px; border-radius: 4px; font-weight: bold; }
.btn-orange:hover { background: var(--asphalt); }

/* Mobile Menu */
.mobile-toggle { display: none; font-size: 2rem; cursor: pointer; color: var(--asphalt); font-weight: 900; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--asphalt); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-menu.open { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2rem; color: var(--white); cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 2rem; color: var(--white); margin: 15px 0; font-weight: bold; }

/* Hero */
.hero-map { height: 70vh; background-size: cover; background-position: center; position: relative; }
.hero-overlay { width: 100%; height: 100%; background: linear-gradient(to right, rgba(45, 52, 54, 0.9), rgba(45, 52, 54, 0.4)); display: flex; align-items: center; }
.hero-content { margin-left: 10%; color: var(--white); max-width: 600px; }
.badge { background: var(--orange); padding: 5px 10px; font-weight: bold; font-size: 0.8rem; border-radius: 2px; }
.hero-content h1 { font-family: var(--font-head); font-size: 4rem; line-height: 1; margin: 20px 0; text-transform: uppercase; }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; }

.tracking-module { background: var(--white); padding: 25px; border-radius: 4px; max-width: 450px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.tracking-module h3 { font-family: var(--font-head); color: var(--asphalt); margin-bottom: 15px; }
#trackForm { display: flex; gap: 10px; }
#trackForm input { flex: 1; padding: 12px; border: 2px solid #eee; border-radius: 4px; font-family: var(--font-body); }
#trackForm input:focus { border-color: var(--orange); outline: none; }
#trackForm button { background: var(--asphalt); color: var(--white); border: none; padding: 0 20px; font-weight: bold; cursor: pointer; border-radius: 4px; }
#trackResult { margin-top: 15px; font-weight: bold; color: var(--orange); font-size: 0.9rem; }

/* Services */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-head); font-size: 3rem; color: var(--asphalt); margin-bottom: 10px; }
.orange-dash { width: 60px; height: 6px; background: var(--orange); margin: 0 auto; }
.orange-dash.left { margin: 20px 0; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-item { background: var(--concrete); padding: 30px; text-align: center; border-radius: 8px; transition: 0.3s; }
.service-item:hover { background: var(--asphalt); color: var(--white); }
.service-item.highlight { border: 2px solid var(--orange); background: var(--white); }
.icon { font-size: 3rem; margin-bottom: 20px; }
.service-item h3 { font-family: var(--font-head); margin-bottom: 10px; font-size: 1.5rem; }

/* Map Strip */
.map-strip { background: var(--asphalt); color: var(--white); padding: 50px 0; margin-top: 50px; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 10px); }
.map-content { display: flex; justify-content: space-between; align-items: center; }
.map-text h2 { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 10px; }
.map-stats { display: flex; gap: 40px; }
.stat strong { display: block; font-family: var(--font-head); font-size: 2.5rem; color: var(--orange); }
.stat span { font-size: 0.8rem; letter-spacing: 1px; }

/* About & Contact */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-col h1 { font-family: var(--font-head); font-size: 3rem; line-height: 1; }
.zone-list { margin-top: 30px; list-style: none; }
.zone-list li { margin-bottom: 20px; padding-left: 15px; border-left: 4px solid var(--orange); }
.zone-list em { color: var(--orange); font-weight: bold; font-style: normal; }
.img-col img { width: 100%; border-radius: 8px; box-shadow: 20px 20px 0 var(--concrete); }
.caption { text-align: center; font-weight: bold; margin-top: 10px; font-family: var(--font-head); color: var(--asphalt); }

.booking-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--concrete); padding: 50px; border-radius: 8px; }
.contact-info h2 { font-family: var(--font-head); color: var(--orange); margin-bottom: 20px; }
.c-details p { margin-bottom: 10px; font-weight: 500; }

.logistics-form .form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.col { flex: 1; }
.logistics-form label { display: block; font-weight: bold; font-size: 0.8rem; margin-bottom: 5px; text-transform: uppercase; }
.logistics-form input, .logistics-form select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; background: var(--white); font-family: var(--font-body); }
.btn-submit { width: 100%; background: var(--asphalt); color: var(--white); border: none; padding: 15px; font-weight: bold; font-family: var(--font-head); font-size: 1.2rem; cursor: pointer; border-radius: 4px; transition: 0.3s; }
.btn-submit:hover { background: var(--orange); }

/* Partners & Legal */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.partner-card { background: var(--white); padding: 30px; border: 1px solid #eee; border-radius: 4px; }
.partner-card.highlight { background: #fff5f5; border-color: var(--orange); }
.p-logo { font-family: var(--font-head); font-weight: bold; font-size: 1.2rem; margin-bottom: 15px; color: var(--asphalt); }
.partner-card p { font-style: italic; color: #555; margin-bottom: 15px; }
.partner-card span { font-size: 0.8rem; font-weight: bold; }

.legal-doc { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border: 1px solid #eee; }
.legal-doc h1 { font-family: var(--font-head); color: var(--asphalt); }
.legal-doc h3 { margin-top: 30px; color: var(--orange); }

/* Footer */
.track-footer { background: var(--asphalt); color: #b2bec3; padding: 60px 0 20px; margin-top: 80px; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #636e72; padding-bottom: 30px; margin-bottom: 20px; }
.f-brand h4 { font-family: var(--font-head); color: var(--white); margin-bottom: 5px; }
.f-links a { color: #dfe6e9; margin-left: 20px; }
.f-links a:hover { color: var(--orange); }
.copyright { text-align: center; font-size: 0.8rem; }

/* Cookie */
.cookie-panel { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--orange); color: var(--white); padding: 15px; display: flex; justify-content: center; align-items: center; gap: 20px; z-index: 9999; transform: translateY(100%); transition: 0.5s; }
.cookie-panel.active { transform: translateY(0); }
.cookie-panel button { background: var(--asphalt); color: var(--white); border: none; padding: 5px 20px; border-radius: 4px; font-weight: bold; cursor: pointer; }

@media (max-width: 900px) {
    .urban-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 3rem; }
    #trackForm { flex-direction: column; }
    #trackForm button { width: 100%; }
    .service-grid, .about-layout, .booking-wrapper, .partner-grid, .logistics-form .form-row, .map-content { grid-template-columns: 1fr; flex-direction: column; }
    .map-stats { margin-top: 20px; }
    .footer-grid { flex-direction: column; text-align: center; gap: 20px; }
}