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

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

/* Header and Navigation */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

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

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #3498db;
}

/* Main content */
main {
    margin-top: 80px;
    padding: 2rem 5%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Buttons */
.cta-button,
.submit-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover,
.submit-button:hover {
    background-color: #2980b9;
}

.secondary-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #f8f9fa;
    color: #3498db;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #3498db;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: #3498db;
    color: white;
}

/* Features section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Why Choose Us section */
.why-choose-us {
    padding: 4rem 0;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin: 3rem 0;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.reason-card {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.reason-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.testimonial-card .quote {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    color: #666;
    font-weight: 500;
}

/* Pricing section */
.pricing-preview {
    padding: 4rem 0;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin: 3rem 0;
}

.pricing-preview h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #3498db;
}

.pricing-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 1.5rem;
    color: #3498db;
    font-weight: bold;
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    margin: 1rem 0;
}

.pricing-card ul li {
    margin-bottom: 0.5rem;
}

/* Services page */
.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-card.featured {
    transform: scale(1.05);
    border: 2px solid #3498db;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card .price {
    font-size: 1.5rem;
    color: #3498db;
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style-position: inside;
    margin-top: 1rem;
}

.service-details {
    margin: 1.5rem 0;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.service-details h4 {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Additional services */
.additional-services {
    margin: 4rem 0;
}

.additional-services h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.additional-service-card {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* FAQ section */
.faq {
    margin: 4rem 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Contact page */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item .icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-item .sub-text {
    color: #666;
    font-size: 0.9rem;
}

.business-hours {
    margin: 2rem 0;
}

.hours-grid {
    margin-top: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.service-area {
    margin-top: 2rem;
}

.map-placeholder {
    margin-top: 1rem;
    padding: 2rem;
    background-color: #eee;
    border-radius: 5px;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 0.5rem;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.form-group textarea {
    resize: vertical;
}

/* Social proof section */
.social-proof {
    margin: 4rem 0;
    text-align: center;
}

.social-proof h2 {
    margin-bottom: 2rem;
    color: #2c3e50;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.proof-item h3 {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

/* CTA section */
.cta-section {
    text-align: center;
    padding: 4rem 0;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin: 3rem 0;
}

.cta-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    color: #666;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 1rem;
    }

    nav ul li {
        margin: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured,
    .service-card.featured {
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
} 