/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #1E3A8A, #1E40AF);
    color: #C5C6C7;
    text-align: center;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 50px;
    background: linear-gradient(180deg, #1E3A8A, #1E40AF);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.6);
    border: 2px solid #FFD700;
}

/* Header */
header {
    margin-bottom: 40px;
    padding: 20px;
    border-bottom: 2px solid #FFD700;
}

h1 {
    font-size: 40px;
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(255, 215, 0, 0.6);
}

p {
    font-size: 20px;
    color: #E3E3E3;
    line-height: 1.6;
}

/* Phone Number */
.phone-number {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 6px rgba(255, 215, 0, 0.5);
    padding: 5px 10px;
    border: 2px solid #FFD700;
    border-radius: 8px;
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    text-decoration: none;
}

.phone-number:hover {
    background: rgba(255, 215, 0, 0.3);
}

/* Section Titles */
h2 {
    color: #FFD700;
    font-size: 28px;
    font-weight: 600;
    border-bottom: 3px solid #FFD700;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(255, 215, 0, 0.6);
}

/* Vehicle Container */
.vehicle-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Individual Vehicle */
.vehicle {
    text-align: center;
    max-width: 250px;
    margin: 0 auto;
}

h3 {
    color: #FFD700;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Images */
.vehicle img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
    transition: transform 0.3s ease-in-out;
    border: 4px solid #FFD700;
}

.vehicle img:hover {
    transform: scale(1.08);
}

/* Contact Section */
.contact {
    padding: 30px;
    background: linear-gradient(180deg, #1E3A8A, #1E40AF);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Phone Container */
.phone-container {
    text-align: center;
    margin-top: 10px;
}

/* Call Button */
.call-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFC107);
    color: #0B0C10;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.call-button:hover {
    background: linear-gradient(135deg, #FFC107, #FFEA00);
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.5);
}

/* Fix Call Button on Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 22px;
    }

    .container {
        padding: 20px;
    }

    .phone-number {
        font-size: 20px;
        padding: 4px 8px;
    }

    .call-button {
        width: 90%;
        padding: 12px 0;
        text-align: center;
    }
}

/* Footer */
footer {
    background: linear-gradient(180deg, #1E3A8A, #1E40AF);
    color: #FFD700;
    padding: 25px;
    font-size: 18px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 -4px 10px rgba(255, 215, 0, 0.2);
}

footer p {
    margin: 0;
}
