/* Fleet services — from frontend-final-html-design/fleet-services.php */
/* Fleet Modern Stylesheet */
:root {
--ngm-navy: #0a1f4b;
--ngm-red: #ac151c;
}

/* 1. Modern Banner Design */
.fleet-modern-hero {
position: relative;
min-height: 600px;
display: flex;
align-items: center;
background-size: cover !important;
background-position: center !important;
padding: 0;
overflow: hidden;
}

.fleet-hero-overlay {
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
background: linear-gradient(110deg, rgba(255,255,255,0.95) 35%, rgba(255,255,255,0) 100%);
z-index: 1;
}

.fleet-hero-card {
position: relative;
z-index: 2;
}

.fleet-hero-tag {
display: inline-block;
background: var(--ngm-red);
color: #fff;
padding: 5px 15px;
font-size: 14px;
font-weight: 400;
border-radius: 50px;
margin-bottom: 20px;
text-transform: uppercase;
}

.fleet-hero-title {
font-size: 3rem;
font-weight: 400;
line-height: 1.1;
text-transform: uppercase;
margin-bottom: 25px;
}

.navy-text { color: var(--ngm-navy); }
.red-text { color: var(--ngm-red); }

.fleet-btn-main {
background: var(--ngm-navy);
color: white;
padding: 16px 40px;
text-decoration: none;
font-weight: 400;
display: inline-block;
border-bottom: 4px solid var(--ngm-red);
transition: all 0.3s ease;
}

.fleet-btn-main:hover {
transform: translateY(-5px);
color: white;
background: var(--ngm-red);
}

/* 2. Content & Form Styles */
.fleet-divider {
width: 80px;
height: 5px;
background: var(--ngm-red);
margin-bottom: 20px;
}

.fleet-form-card {
box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important;
border-radius: 12px;
border-top: 6px solid var(--ngm-navy);
}

/* 3. Image Styling */
.fleet-img-frame {
position: relative;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fleet-img-frame img {
transition: 0.5s ease;
}

.fleet-img-frame:hover img {
transform: scale(1.05);
}

/* 4. Feature Icons */
.fleet-feature-item {
padding: 30px;
background: #fff;
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
height: 100%;
border-bottom: 3px solid transparent;
transition: 0.3s;
}

.fleet-feature-item:hover {
border-bottom-color: var(--ngm-red);
transform: translateY(-5px);
}

.feature-icon {
font-size: 40px;
color: var(--ngm-navy);
margin-bottom: 15px;
}

/* 5. Utility */
.bg-light-gray { background-color: #f8f9fa; }

.fleet-cta-bar {
background-color: var(--ngm-navy);
background-image: linear-gradient(rgba(10,31,75,0.8), rgba(10,31,75,0.8)), url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
}

/* Responsive Fixes */
@media (max-width: 991px) {
.fleet-hero-title { font-size: 2.8rem; }
.fleet-hero-overlay {
  background: rgba(255,255,255,0.9);
}
