/* styles.css - matches sample style, with customizations */
body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f6fb;
    color: #222;
    line-height: 1.6;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 8vw 16px 8vw;
    background: #fff;
    box-shadow: 0 2px 8px rgba(80,80,80,0.03);
    position: relative;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #1976d2;
    letter-spacing: 1px;
}

.logo-image {
    height: 105px;
    width: auto;
    border-radius: 8px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

nav ul li a:hover {
    color: #1976d2;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #1976d2;
}

@media (max-width: 700px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .logo {
        font-size: 1.3rem;
        gap: 8px;
    }
    .logo-image {
        height: 82px;
    }
    nav {
        width: 100%;
    }
    nav ul {
        flex-direction: column;
        gap: 8px;
        background: #fff;
        width: 100%;
        padding: 12px 0 0 0;
        display: none;
    }
    nav ul.show {
        display: flex;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        right: 24px;
        top: 30px;
    }
}

.banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    left: 0;
    top: 0;
}

.banner-overlay {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    background: rgba(25, 118, 210, 0.65);
    padding: 40px 8vw;
    box-sizing: border-box;
}

.banner-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-overlay p {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.service-hours {
    font-size: 1.1rem !important;
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px !important;
}

.banner-call {
    display: inline-block;
    background: #4a4a4a;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    font-family: 'Roboto', Arial, sans-serif;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(74,74,74,0.4);
    border: 3px solid #fff;
}
.banner-call:hover {
    background: #2d2d2d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74,74,74,0.6);
    border-color: #ffd700;
}

.services-section {
    padding: 80px 8vw 50px 8vw;
    background: #fff;
    text-align: center;
}
.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1976d2;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}
.service-card {
    background: #f4f8fd;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(80,80,80,0.08);
    padding: 32px 24px 28px 24px;
    max-width: 320px;
    text-align: center;
    transition: all 0.3s;
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
}
.service-card h3 {
    font-size: 1.4rem;
    color: #1976d2;
    margin-bottom: 15px;
}
.service-card p {
    font-size: 1rem;
    color: #34495e;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(25,118,210,0.15);
    transform: translateY(-5px);
}

/* About Section */
.about-section {
    padding: 80px 8vw 50px 8vw;
    background: #f8faff;
    text-align: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1976d2;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

.about-item {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.about-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.about-item h3 {
    font-size: 1.3rem;
    color: #1976d2;
    margin-bottom: 15px;
}

.about-item p {
    color: #34495e;
    font-size: 1rem;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(25,118,210,0.12);
}

.decorative-section {
    padding: 50px 8vw;
    background: #e3eefa;
}

.decorative-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.decorative-container img {
    width: 280px;
    height: 160px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(30,100,200,0.1);
    transition: all 0.3s;
}

.decorative-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(30,100,200,0.2);
}

.contact-section {
    padding: 80px 8vw 50px 8vw;
    background: #fff;
    text-align: center;
}
.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1976d2;
}
.contact-info {
    font-size: 1.2rem;
    color: #34495e;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.contact-item {
    background: #f8faff;
    padding: 15px 30px;
    border-radius: 10px;
    min-width: 300px;
    transition: all 0.3s;
}

.contact-item:hover {
    background: #e3eefa;
    transform: translateY(-2px);
}

.contact-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.phone-link {
    color: #1976d2;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s;
}
.phone-link:hover {
    color: #125599;
    background: #cce4ff;
}

footer {
    background: #1976d2;
    color: #fff;
    text-align: center;
    padding: 30px 0 20px 0;
    font-size: 1rem;
    margin-top: 0;
}

@media (max-width: 900px) {
    .services-cards {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    .decorative-container {
        flex-direction: column;
        gap: 20px;
    }
    .decorative-container img {
        width: 100%;
        max-width: 400px;
    }
    .banner {
        height: 300px;
    }
    .banner-overlay h1 {
        font-size: 2rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-item {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .banner {
        height: 250px;
    }
    .banner-overlay {
        padding: 15px 4vw 40px 4vw;
    }
    .banner-overlay h1 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    .banner-overlay p {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    .banner-call {
        margin-top: 15px;
        margin-bottom: 20px;
        padding: 14px 32px;
        font-size: 1rem;
    }
    .services-section h2,
    .about-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    .services-section,
    .about-section,
    .contact-section {
        padding: 50px 4vw 30px 4vw;
    }
    .decorative-section {
        padding: 30px 4vw;
    }
}
