:root {
    --primary: #F97316; /* High-Viz Orange */
    --accent: #2563EB; /* Data Blue */
    --graphite: #1F2937; /* Graphite Slate */
    --terminal: #0F172A; /* Dark Terminal */
    --text-ivory: #F9FAFB;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Archivo Black', sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
body { background: white; color: var(--graphite); font-family: var(--font-main); overflow-x: hidden; line-height: 1.6; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 4rem; }
.section-pad { padding: 10rem 0; }

/* NAV */
#prestige-nav { position: fixed; width:100%; top:0; z-index:1000; padding: 2.5rem 0; transition: all 0.4s; }
.nav-box { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 2.4rem; color: var(--graphite); text-decoration: none; font-weight: 900; letter-spacing: -2px; }
.logo span { color: var(--primary); }
.nav-links a { color: var(--graphite); text-decoration: none; font-weight: 900; font-size: 0.85rem; text-transform: uppercase; margin-left: 3.5rem; letter-spacing: 1px; }
.nav-cta { background: var(--primary); color: white !important; padding: 0.8rem 2.5rem; border-radius: 4px; box-shadow: 0 10px 30px rgba(249,115,22,0.3); }

/* HERO (Zero-Shade) */
.hero-sec { height: 100vh; display: flex; align-items: center; background: #FAF9F8; border-bottom: 5px solid var(--primary); }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 6rem; align-items: center; }
.hero-content h1 { font-family: var(--font-heading); font-size: 7.5rem; line-height: 0.85; margin-bottom: 2.5rem; color: var(--graphite); text-transform: uppercase; }
.hero-content p { font-size: 1.3rem; color: #444; max-width: 550px; background: white; padding: 2.5rem; border-right: 8px solid var(--primary); }
.hero-img { height: 80vh; background: var(--graphite); overflow: hidden; border-radius: 4px; transform: skewX(-2deg); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transform: skewX(2deg); }

/* SERVICE BLOCKS */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.lo-card { background: white; padding: 4.5rem; border: 1px solid #eee; transition: 0.4s; position: relative; }
.lo-card:hover { transform: translateY(-10px); border-color: var(--primary); }
.lo-card::before { content: ''; position: absolute; top:0; left:0; width:100%; height:8px; background: var(--primary); transform: scaleX(0); transition: 0.4s; origin: left; }
.lo-card:hover::before { transform: scaleX(1); }
.lo-icon { font-size: 3.5rem; margin-bottom: 2rem; display: block; }
.lo-card h3 { font-family: var(--font-heading); font-size: 2.22rem; margin-bottom: 1.5rem; line-height: 1; }

/* FLEET TIERS */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.fleet-card { background: var(--terminal); color: white; padding: 4rem 3rem; border-radius: 4px; border-top: 5px solid var(--primary); }
.fleet-card h4 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--primary); }
.fleet-specs { list-style: none; margin-top: 2rem; }
.fleet-specs li { margin-bottom: 1rem; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 0.5rem; font-size: 0.9rem; }
.fleet-specs li span { font-weight: 900; color: var(--primary); }

/* PROMINENT CTA */
.prominent-cta { background: var(--primary); color: white; padding: 10rem 0; text-align: center; }
.prominent-cta h2 { font-family: var(--font-heading); font-size: 6rem; line-height: 0.9; margin-bottom: 2.5rem; }
.enquiry-form { max-width: 1000px; margin: 4rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.enquiry-form input, select { padding: 1.5rem; background: rgba(0,0,0,0.1); border: 1px solid rgba(255,255,255,0.2); color: white; font-weight: 900; width: 100%; }
.enquiry-form button { grid-column: span 3; background: var(--graphite); color: white; padding: 1.6rem; border: none; font-weight: 900; text-transform: uppercase; font-size: 1.4rem; cursor: pointer; transition: 0.3s; }
.enquiry-form button:hover { background: #000; }

/* AI CONCIERGE (Logistics Edition) */
#concierge-trigger { position: fixed; bottom: 35px; right: 35px; width: 65px; height: 65px; background: var(--primary); border-radius: 4px; display: flex; align-items: center; justify-content: center; z-index: 2000; box-shadow: 0 15px 40px rgba(249,115,22,0.4); color: white; cursor: pointer; }
#concierge-window { position: fixed; bottom: 120px; right: 35px; width: 400px; background: white; border-radius: 4px; box-shadow: 0 30px 100px rgba(0,0,0,0.3); opacity: 0; pointer-events: none; transition: 0.4s; transform: translateY(20px); z-index: 2000; border: 1px solid #ddd; }
#concierge-window.active { opacity: 1; pointer-events: all; transform: translateY(0); }
.concierge-header { background: var(--graphite); color: white; padding: 2rem; display: flex; align-items: center; gap: 1.5rem; border-bottom: 5px solid var(--primary); }
.concierge-body { height: 440px; background: #F3F4F6; padding: 2.5rem; overflow-y: auto; }
.chat-item { margin-bottom: 2rem; padding: 1.5rem; border-radius: 4px; font-size: 1rem; line-height: 1.5; }
.ig-msg { background: white; border-left: 6px solid var(--primary); color: var(--graphite); font-weight: 700; }
.user-msg { background: var(--primary); color: white; margin-left: 2rem; }

@media (max-width: 1024px) {
    .container { padding: 0 2rem; }
    .hero-grid, .card-grid, .fleet-grid, .enquiry-form { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 3.5rem; }
    .enquiry-form button { grid-column: span 1; }
}
