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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

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

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

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

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

nav a:hover {
    color: #3498db;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

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

/* Hero section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: center 70%;
    border-radius: 8px;
    margin-bottom: 2rem;
    transition: transform 0.5s;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.subheading {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 1rem auto;
    text-align: center;
    width: fit-content;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Sections */
section {
    margin-bottom: 5rem;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

h2 {
    color: #2c3e50;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #3498db;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

.step {
    padding: 2.5rem;
    background-color: #e8f0f8;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #d0e1f0;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step p {
    color: #444;
    line-height: 1.6;
}

/* Testimonials */
.testimonial {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    color: #666;
    font-style: italic;
}

/* FAQ section */
.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #e8f0f8;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 1px solid #d0e1f0;
}

.faq-item:hover {
    transform: translateX(5px);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: #444;
}

/* Contact form */
.contact {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact h1 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact > p {
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background-color: #e8f0f8;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid #d0e1f0;
}

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

label {
    display: block;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 500;
}

input, textarea, select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

textarea {
    resize: vertical;
}

/* About page */
.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.value {
    padding: 2.5rem;
    background-color: #e8f0f8;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 1px solid #d0e1f0;
}

.value:hover {
    transform: translateY(-5px);
}

.value h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission {
    font-size: 1.25rem;
    color: #2c3e50;
    text-align: center;
    margin: 3rem 0;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Service images */
.service-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.service-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-image:first-child {
    object-position: center 65%;
}

.service-image:hover {
    transform: scale(1.03);
}

/* About images */
.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.floor-image {
    object-position: center 70%;
}

.about-image:hover {
    transform: scale(1.03);
}

/* Contact info */
.contact-info {
    margin-top: 3rem;
    text-align: center;
}

.contact-note {
    margin-top: 1.5rem;
    font-style: italic;
    color: #666;
}

/* Footer */
footer {
    text-align: center;
    padding: 2.5rem;
    background-color: #fff;
    margin-top: 4rem;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    nav ul {
        display: none;
    }

    .logo {
        font-size: 1.25rem;
        text-align: center;
        width: 100%;
    }

    main {
        margin-top: 60px;
    }

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

    .process-steps, .values {
        grid-template-columns: 1fr;
    }

    .service-images,
    .about-images {
        grid-template-columns: 1fr;
    }

    .hero-image {
        max-height: 300px;
    }

    .service-image,
    .about-image {
        height: 250px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    section {
        padding: 2rem;
    }
} 