:root {
    --slate: #37474f;
    --dark-slate: #263238;
    --red: #d32f2f;
    --red-hover: #b71c1c;
    --light-grey: #f5f5f5;
    --border: #cfd8dc;
    --white: #ffffff;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--light-grey);
    color: var(--slate);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Top Bar */
.top-bar { background-color: var(--dark-slate); color: #b0bec5; font-size: 0.8rem; padding: 8px 0; }
.bar-flex { display: flex; justify-content: space-between; align-items: center; }
.login-area a { color: var(--white); font-weight: bold; }

/* Header */
.corp-header { background-color: var(--white); padding: 20px 0; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; border-bottom: 4px solid var(--red); }
.header-grid { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 2rem; color: var(--slate); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.logo .red { color: var(--red); }
.tm { font-size: 0.8rem; vertical-align: super; color: #999; }

.main-nav ul { display: flex; gap: 25px; align-items: center; }
.main-nav a { font-weight: 500; font-size: 0.95rem; text-transform: uppercase; color: var(--slate); }
.main-nav a:hover, .main-nav a.active { color: var(--red); }

.btn-red { background-color: var(--red); color: var(--white) !important; padding: 10px 25px; border-radius: 2px; font-weight: bold; }
.btn-red:hover { background-color: var(--red-hover); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 30px; height: 3px; background-color: var(--slate); }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 250px; height: 100%;
    background-color: var(--dark-slate); z-index: 2000;
    display: flex; flex-direction: column; padding: 40px; gap: 20px;
    transition: 0.3s ease; border-left: 5px solid var(--red);
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--white); }
.mobile-menu a { font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); border-bottom: 1px solid #455a64; padding-bottom: 10px; }

/* Hero */
.hero-corp {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(38,50,56,0.95) 0%, rgba(38,50,56,0.6) 100%);
    display: flex; align-items: center;
}
.hero-content {
    width: 90%; max-width: 1200px; margin: 0 auto;
    color: var(--white); padding: 0 20px;
}
.hero-content h1 {
    font-family: var(--font-heading); font-size: 3.5rem; margin-bottom: 20px;
    text-transform: uppercase; line-height: 1.1;
    border-left: 8px solid var(--red); padding-left: 20px;
}
.hero-content p { font-size: 1.2rem; max-width: 600px; margin-bottom: 40px; color: #eceff1; }

.hero-stats { display: flex; gap: 40px; margin-bottom: 40px; }
.stat strong { font-family: var(--font-heading); font-size: 2.5rem; color: var(--red); display: block; line-height: 1; }
.stat span { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

.cta-button { background-color: var(--white); color: var(--red); font-weight: bold; padding: 15px 35px; text-transform: uppercase; font-family: var(--font-heading); letter-spacing: 1px; display: inline-block; }
.cta-button:hover { background-color: var(--red); color: var(--white); }

/* Services Grid */
.section-padding { padding: 80px 0; }
.section-header { margin-bottom: 50px; text-align: center; }
.section-header h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--slate); text-transform: uppercase; }
.divider-red { width: 60px; height: 4px; background-color: var(--red); margin: 15px auto; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-card {
    background: var(--white); border: 1px solid var(--border); padding: 30px;
    transition: 0.3s; position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--red); box-shadow: var(--shadow); }
.service-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--red); transform: scaleX(0); transition: 0.3s; transform-origin: left; }
.service-card:hover::after { transform: scaleX(1); }

.icon { font-size: 2.5rem; margin-bottom: 15px; }
.service-card h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 15px; color: var(--dark-slate); }
.service-card p { font-size: 0.95rem; color: #546e7a; }

/* Fleet Strip */
.fleet-strip { background-color: var(--dark-slate); color: var(--white); padding: 30px 0; text-align: center; }
.fleet-strip h3 { font-family: var(--font-heading); margin-bottom: 10px; color: var(--red); }
.car-strip { font-size: 0.9rem; letter-spacing: 1px; color: #b0bec5; }
.car-strip span { margin: 0 10px; }

/* About / Solutions */
.solutions-layout { display: flex; flex-direction: column; gap: 60px; }
.solution-item { display: flex; background: var(--white); border: 1px solid var(--border); }
.solution-item.alt-bg { flex-direction: row-reverse; }
.solution-item img { width: 40%; object-fit: cover; }
.s-content { padding: 40px; width: 60%; }
.s-content h3 { font-family: var(--font-heading); font-size: 2rem; color: var(--slate); margin-bottom: 20px; }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { margin-bottom: 10px; padding-left: 25px; position: relative; font-weight: 500; }
.check-list li::before { content: '✔'; color: var(--red); position: absolute; left: 0; }

/* Partners */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.partner-card { background: var(--white); padding: 30px; border-top: 4px solid var(--slate); box-shadow: var(--shadow); }
.sector-badge { font-size: 0.7rem; font-weight: bold; color: #999; letter-spacing: 1px; margin-bottom: 10px; }
.partner-card h3 { font-family: var(--font-heading); margin-bottom: 15px; }
.partner-card p { font-style: italic; color: #555; margin-bottom: 20px; font-size: 0.95rem; }
.manager { border-top: 1px solid #eee; padding-top: 10px; }
.manager strong { display: block; color: var(--red); font-size: 0.9rem; }
.manager span { font-size: 0.8rem; color: #777; }
.logo-strip { text-align: center; margin-top: 50px; color: #ccc; font-weight: bold; letter-spacing: 5px; opacity: 0.5; }

/* Form */
.rfq-wrapper { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border: 1px solid var(--border); }
.rfq-header { text-align: center; margin-bottom: 40px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.rfq-header h2 { font-family: var(--font-heading); font-size: 2rem; color: var(--dark-slate); }
.info-block { margin-top: 20px; font-size: 0.9rem; color: #555; }

.b2b-form .form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.b2b-form .col { flex: 1; }
.b2b-form .full { width: 100%; }
.b2b-form label { display: block; font-weight: bold; font-size: 0.85rem; margin-bottom: 5px; color: var(--slate); }
.b2b-form input, .b2b-form select, .b2b-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; background: #fafafa; border-radius: 2px; font-family: var(--font-body); }
.b2b-form input:focus { border-color: var(--red); outline: none; }
.submit-btn { width: 100%; padding: 15px; background: var(--slate); color: var(--white); border: none; font-family: var(--font-heading); font-size: 1.2rem; letter-spacing: 1px; cursor: pointer; transition: 0.3s; margin-top: 10px; }
.submit-btn:hover { background: var(--red); }

/* Legal */
.legal-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border: 1px solid var(--border); }
.legal-content h1 { font-family: var(--font-heading); color: var(--dark-slate); }
.legal-content h3 { color: var(--red); margin-top: 30px; margin-bottom: 10px; font-family: var(--font-heading); font-size: 1.4rem; }

/* Footer */
.corp-footer { background-color: var(--dark-slate); color: #cfd8dc; padding: 40px 0; margin-top: auto; border-top: 5px solid var(--red); }
.footer-content { text-align: center; }
.f-col h4 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--white); margin-bottom: 10px; letter-spacing: 1px; }
.f-links a { color: #90a4ae; margin: 0 10px; font-size: 0.9rem; }
.f-links a:hover { color: var(--white); }
.copyright { margin-top: 20px; font-size: 0.8rem; opacity: 0.5; }

@media (max-width: 900px) {
    .main-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .partner-grid, .b2b-form .form-row { grid-template-columns: 1fr; flex-direction: column; }
    .solution-item, .solution-item.alt-bg { flex-direction: column; }
    .solution-item img, .s-content { width: 100%; }
}