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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-size: 1.5rem;
    color: #047857;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: #047857;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero .subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: #f9fafb;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #047857;
}

.about p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.company-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.company-info h3 {
    color: #047857;
    margin-bottom: 1rem;
}

.company-info a {
    color: #047857;
    font-weight: 600;
    text-decoration: none;
}

.company-info a:hover {
    text-decoration: underline;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #047857;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid #047857;
}

.testimonial-card .quote {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-card .author {
    font-weight: 600;
    color: #047857;
}

/* Page Header */
.page-header {
    background: #047857;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
}

/* Services Detail */
.services-detail {
    padding: 4rem 0;
}

.service-block {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e5e7eb;
}

.service-block:last-of-type {
    border-bottom: none;
}

.service-block h2 {
    color: #047857;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-block h3 {
    color: #059669;
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
}

.service-block p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-block ul {
    list-style: none;
    padding-left: 0;
}

.service-block ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.0625rem;
}

.service-block ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #047857;
    font-weight: bold;
}

.service-types {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.service-types p {
    font-size: 1.125rem;
    color: #047857;
}

/* Contact Info */
.contact-info {
    padding: 4rem 0;
}

.contact-details h2 {
    color: #047857;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-details p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-item h3 {
    color: #047857;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0.25rem 0;
}

.contact-item a {
    color: #047857;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.25rem;
}

.contact-item a:hover {
    text-decoration: underline;
}

.service-areas {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.service-areas h2 {
    color: #047857;
    margin-bottom: 1rem;
}

.service-areas p {
    font-size: 1.125rem;
}

/* Footer */
footer {
    background: #1f2937;
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

footer p {
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
    }

    .hero h2 {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }
}
/* Contact Form Styles - ADD TO END OF styles.css */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
    color: #047857;
    margin-bottom: 1.5rem;
}

.hidden {
    display: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #047857;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: #047857;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #059669;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

