/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.nav-logo img {
    height: 40px;
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu a {
    margin: 0 0.75rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #007bff;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    height: 24px;
    justify-content: space-between;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 4.5rem;
    padding-bottom: 3rem;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1 1 50%;
    padding: 1rem;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-content p {
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease;
}

.cta-button:hover {
    background: #005dc1;
}

.hero-image {
    flex: 1 1 50%;
    text-align: center;
    padding: 1rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Sections */
.overview h2,
.about-content h2,
.mission h2,
.services-content h2,
.testimonials h2,
.contact-content h2,
.cta-section h2,
.map-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.stats,
.services-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}

.stat h3 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 0.25rem;
}

/* About */
.about-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.about-text {
    flex: 1 1 50%;
}

.about-image {
    flex: 1 1 50%;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

/* Mission Values */
.values {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.value {
    flex: 1 1 30%;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.value i {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 0.5rem;
}

/* Services */
.services-intro {
    margin-bottom: 1.5rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 1rem);
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.service-card i {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    background: #fafafa;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.testimonial {
    flex: 1 1 calc(50% - 1rem);
    background: #fff;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Contact */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-form,
.contact-info {
    flex: 1 1 45%;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    gap: 0.75rem;
}

.contact-item i {
    font-size: 1.25rem;
    color: #007bff;
    margin-top: 0.25rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 2rem 0;
    background: #f7f7f7;
}

.cta-section h2 {
    margin-bottom: 0.5rem;
}

/* Map */
.map-container iframe {
    width: 100%;
    border: 0;
    border-radius: 6px;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.3rem;
    color: #ccc;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.3rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 1rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
    color: #aaa;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-toggle {
        display: flex;
    }
    .hero {
        flex-direction: column;
        padding-top: 5rem;
        text-align: center;
    }
    .about-grid,
    .services-grid,
    .testimonial-grid,
    .contact-grid {
        flex-direction: column;
    }
    .service-card,
    .testimonial,
    .value,
    .contact-form,
    .contact-info {
        flex: 1 1 100%;
    }
    .service-card {
        margin-bottom: 1rem;
    }
    .testimonial {
        margin-bottom: 1rem;
    }
}