
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f9fc;
    color: #003049;
    text-align: center;
}

.hero {
    background: #003049;
    padding: 1px 20px;
    color: white;
}

.logo {
    width: 520px;
    margin-bottom: 10px;
}

.tagline {
    margin-top: 10px;
    font-size: 1.2rem;
}

.vehicle-img {
    width: 90%;
    max-width: 420px;
    display: block;
    margin: 20px auto;
    border-radius: 12px;
}

.rates, .contact, .booking {
    padding: 30px 20px;
}

.rates ul {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

input, textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #bbb;
}

button {
    padding: 12px;
    background: #003049;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* --- Header Left & Right Side Additions --- */

/* Make the header a positioning container */
header.hero {
    position: relative;
    text-align: center;
}

/* LEFT SIDE TEXT */
.header-left {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-align: left;
    line-height: 1.2;
}

/* RIGHT SIDE BUTTON STACK */
.header-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Buttons */
.call-btn,
.book-btn {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    color: white;
    background: #0077b6;
    font-weight: bold;
    transition: 0.2s ease;
}

.call-btn:hover,
.book-btn:hover {
    background: #005f8a;
}

/* --- MOBILE FIX FOR HEADER --- */
@media (max-width: 768px) {

    .header-left,
    .header-right {
        position: static;     /* removes absolute positioning */
        text-align: center;
        margin: 10px 0;
    }

    .header-right button,
    .header-right .book-online-btn {
        display: block;
        margin: 10px auto;
    }

    .header-left {
        margin-top: 20px;
    }

    .hero {
        padding-top: 60px; /* extra spacing so nothing crowds the logo */
    }
}

/* Mobile logo size */
@media (max-width: 730px) {
    .logo {
        width: 330px;   /* adjust this until it looks perfect */
    }
}
