/* Styling to match the original layout & color scheme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #444;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    padding: 20px 0;
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
}

.logo-text .blue {
    color: #106de4;
}

.tagline {
    font-size: 0.85rem;
    color: #777;
}

.phone-link {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

/* Nav */
.navbar {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 4px solid #62a2f4;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: flex-start;
}

.nav-links a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #444;
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-links a.active {
    background: #106de4;
    color: #fff;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)), 
                url('imgs/images_2.png');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: #222;
}

.since-badge {
    background: #106de4;
    color: white;
    display: inline-block;
    padding: 5px 15px;
    font-weight: bold;
    margin-top: 10px;
}

/* Services */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 60px 20px;
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #106de4;
}

/* Footer / Contact */
.footer-details {
    background: #f9f9f9;
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

.submit-btn {
    background: #106de4;
    color: white;
    border: none;
    padding: 10px 30px;
    cursor: pointer;
    font-weight: bold;
}

.phone-display {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 15px 0;
}

.emergency {
    color: #d9534f;
    font-weight: bold;
    margin-top: 10px;
}

.insurance-note {
    font-size: 0.8rem;
    margin-top: 20px;
    color: #888;
}

.copyright {
    padding: 20px 0;
    background: #fff;
    text-align: center;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-grid, .footer-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .nav-links {
        flex-direction: column;
    }
}