/* Wame Blood Transport Systems - Fleet Page Styles
   60-30-10 Rule: 
   60% White (#FFFFFF)
   30% Black (#1A1A1A)
   10% Red (#E63946)
*/

:root {
    --primary-white: #ffffff;
    --secondary-black: #1a1a1a;
    --accent-red: #e63946;
    --light-gray: #f4f4f4;
    --text-muted: #555555;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--primary-white);
    color: var(--secondary-black);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.fleet-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('1000242695.jpg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-white);
}

.hero-container p {
    color: #eee;
}

.hero-container h1 {
    color: #eee;
}

.fleet-hero h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Fleet Grid */
.fleet-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.section-title span {
    color: var(--accent-red);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.fleet-card {
    background: var(--primary-white);
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 220px;
    background: #000;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-red);
    color: white;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 4px;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.specs {
    list-style: none;
    margin-bottom: 25px;
}

.specs li {
    font-size: 0.9rem;
    color: var(--secondary-black);
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}

.specs li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.btn-red {
    background: var(--accent-red);
    color: white;
}

.btn-red:hover {
    background: var(--secondary-black);
}

/* Booking Section */
.booking-section {
    background-color: var(--secondary-black);
    color: var(--primary-white);
    padding: 80px 0;
}

.booking-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
    min-width: 300px;
}

.booking-info h2 span {
    color: var(--accent-red);
}

.booking-info p {
    margin: 20px 0;
    color: #ccc;
}

.contact-item {
    margin-bottom: 15px;
}

.location-badge {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    border: 1px solid var(--accent-red);
    border-radius: 50px;
}

.booking-form-container {
    flex: 1.5;
    min-width: 300px;
    background: var(--primary-white);
    padding: 40px;
    border-radius: 8px;
    color: var(--secondary-black);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-red);
}

.btn-submit {
    background: var(--secondary-black);
    color: white;
    font-size: 1rem;
    padding: 15px;
}

.btn-submit:hover {
    background: var(--accent-red);
}

.form-status {
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
}

.status-success {
    color: green;
}

.status-error {
    color: var(--accent-red);
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .fleet-hero h1 {
        font-size: 2rem;
    }
}