/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    background-color: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    color: #1a5276;
    font-size: 1.5rem;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a5276;
}

.contact-info .phone {
    color: #1a5276;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1a5276;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #154360;
}

/* Services Section */
.services {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5276;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: #1a5276;
    margin-bottom: 1rem;
}

/* Insurance Section */
.insurance {
    padding: 5rem 5%;
    background-color: #1a5276;
    color: white;
}

.insurance-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.insurance-content ul {
    list-style: none;
    margin-top: 2rem;
}

.insurance-content li {
    margin: 1rem 0;
}

/* Gallery Section */
.gallery {
    padding: 5rem 5%;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5276;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5276;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 2rem;
}

.contact-info i {
    color: #1a5276;
    margin-right: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form textarea {
    height: 150px;
}

.submit-button {
    padding: 1rem;
    background-color: #1a5276;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #154360;
}

/* Footer */
footer {
    background-color: #1a5276;
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Reviews Section */
.reviews {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5276;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.review-card .name {
    font-weight: bold;
    color: #1a5276;
    margin-bottom: 0.5rem;
}

.review-card .date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.review-card .stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

.review-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.review-form h3 {
    margin-bottom: 1.5rem;
    color: #1a5276;
}

.rating {
    margin: 1rem 0;
}

.stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.stars input {
    display: none;
}

.stars label {
    cursor: pointer;
    font-size: 2rem;
    color: #ddd;
    padding: 0 0.1rem;
}

.stars input:checked ~ label,
.stars label:hover,
.stars label:hover ~ label {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .service-grid, .gallery-grid, .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 1rem 0;
    }
    .nav-links a {
        margin: 0.5rem 0;
        font-size: 1.1rem;
    }
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .hero-content {
        padding: 1rem;
    }
    .service-grid, .gallery-grid, .footer-content {
        grid-template-columns: 1fr;
    }
    .contact-container, .reviews-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-content {
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 0.98rem;
    }
    .navbar {
        padding: 0.5rem;
    }
    .logo h1 {
        font-size: 1.1rem;
    }
    .hero-content h1 {
        font-size: 1.1rem;
    }
    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }
    .service-card, .review-card, .review-form, .contact-form {
        padding: 1rem;
    }
    .footer-content {
        padding: 1rem 0;
    }
    .about-hero h1 {
        font-size: 1.3rem;
    }
}

/* Mobile menu button styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #1a5276;
    cursor: pointer;
}
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        margin-bottom: 0.5rem;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .nav-links.show {
        display: flex;
    }
}

/* --- About Page Styles --- */
.about-hero {
    background: linear-gradient(rgba(26,82,118,0.7), rgba(26,82,118,0.7)), url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 5rem 0 3rem 0;
    text-align: center;
}
.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.about-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(26,82,118,0.08);
    margin-top: -60px;
    position: relative;
    z-index: 2;
}
.about-page h2 {
    color: #1a5276;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.about-page h3 {
    color: #154360;
    margin-top: 2.5rem;
    margin-bottom: 0.7rem;
    font-size: 1.3rem;
}
.about-page p {
    margin-bottom: 1.2rem;
    font-size: 1.08rem;
    color: #333;
}

.about-columns {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.about-col {
    flex: 1 1 300px;
    min-width: 260px;
}

.why-choose-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 2.5rem 0;
}
.why-card {
    background: #f4f8fb;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(26,82,118,0.07);
    padding: 1.5rem 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: box-shadow 0.2s;
}
.why-card:hover {
    box-shadow: 0 6px 24px rgba(26,82,118,0.13);
}
.why-card i {
    font-size: 2rem;
    color: #1a5276;
    flex-shrink: 0;
    margin-top: 0.2rem;
}
.why-card span {
    font-weight: 600;
    color: #154360;
    display: block;
    margin-bottom: 0.2rem;
}

.about-cta {
    text-align: center;
    margin-top: 2.5rem;
}
.about-cta .cta-button {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(90deg, #1a5276 60%, #2980b9 100%);
    border: none;
    box-shadow: 0 2px 8px rgba(26,82,118,0.10);
}

@media (max-width: 900px) {
    .about-columns {
        flex-direction: column;
        gap: 1.5rem;
    }
    .about-page {
        margin-top: -30px;
    }
}
@media (max-width: 600px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    .about-page {
        padding: 1.2rem 0.5rem 2rem 0.5rem;
    }
} 