/* --- Reset & Base Styles --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* --- Colors --- */
:root {
    --primary-blue: #0056b3; /* Mechanic Blue */
    --dark-grey: #2c3e50;
    --light-grey: #f4f4f4;
    --white: #ffffff;
    --accent-red: #d32f2f; /* For urgent buttons if needed */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a { text-decoration: none; }

/* --- Buttons --- */
.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    margin-left: 10px;
}

/* --- Navbar --- */
.navbar {
    background: var(--dark-grey);
    color: var(--white);
    padding: 1rem 0;
    position: sticky; /* Keeps nav at top when scrolling */
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

/* --- Hero Section --- */
.hero {
   /* This loads your image AND adds a dark grey layer on top of it so text pops */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('bando.jpg');
    
    /* This ensures the image covers the whole box without stretching weirdly */
    background-size: cover;
    
    /* This keeps the center of the photo visible */
    background-position: center;
    color: var(--white);
    height: 60vh; /* 60% of viewport height */
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.hero h1 { font-size: 2.5rem; margin-bottom: 10px; }
.hero p { font-size: 1.2rem; margin-bottom: 20px; }

/* --- Trust Bar --- */
.trust-bar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 15px 0;
    text-align: center;
}
.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    font-weight: bold;
}

/* --- Services Grid --- */
.section { padding: 60px 0; }
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--dark-grey);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: var(--white);
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.card h3 { color: var(--primary-blue); margin-bottom: 10px; }

/* --- Contact Section --- */
.bg-light { background: var(--light-grey); }

.split-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.info-box { 
    flex: 1; 
    min-width: 300px; 
}

.map-box { 
    flex: 1; 
    min-width: 300px;
    min-height: 350px; /* Ensures the map has height */
}

/* Make sure the map fills the container */
.map-box iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px; /* Rounds the corners of the map */
    min-height: 350px;
}

/* --- Review Badge --- */
.review-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--dark-grey);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.review-badge:hover {
    transform: scale(1.05); /* Slightly grows when you hover over it */
    background-color: #fff;
    color: var(--primary-blue);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .nav-link { display: none; } /* Hides "Find Us" text link on small phones to save space */
}
