/* 
Design Philosophy: Organic Modernism
- Scandinavian minimalism with organic, flowing forms
- Warm neutral colors: cream (#faf8f3), sage green (#8b9d83), terracotta (#c97d60), deep navy (#2c3e50)
- Soft curves, generous whitespace, subtle depth
- Typography: Playfair Display (display), Inter (body)
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #faf8f3;
    --sage: #8b9d83;
    --terracotta: #c97d60;
    --navy: #2c3e50;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-muted: #6b7280;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--navy);
    background-color: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('https://private-us-east-1.manuscdn.com/sessionFile/RVGQG3EvcoZI3rRSDqsfnw/sandbox/LBFK8dOUOcTYaL8zZkECX2-img-1_1771572877000_na1fn_aGVyby13YWxscGFwZXItaW5zdGFsbGF0aW9u.png?x-oss-process=image/resize,w_1920,h_1920/format,webp/quality,q_80&Expires=1798761600&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9wcml2YXRlLXVzLWVhc3QtMS5tYW51c2Nkbi5jb20vc2Vzc2lvbkZpbGUvUlZHUUczRXZjb1pJM3JSU0Rxc2Zudy9zYW5kYm94L0xCRks4ZE9VT2NUWWFMOHpaa0VDWDItaW1nLTFfMTc3MTU3Mjg3NzAwMF9uYTFmbl9hR1Z5YnkxM1lXeHNjR0Z3WlhJdGFXNXpkR0ZzYkdGMGFXOXUucG5nP3gtb3NzLXByb2Nlc3M9aW1hZ2UvcmVzaXplLHdfMTkyMCxoXzE5MjAvZm9ybWF0LHdlYnAvcXVhbGl0eSxxXzgwIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzk4NzYxNjAwfX19XX0_&Key-Pair-Id=K2HSFNDJXOU9YS&Signature=Ivq4sKm2PeTz-U5iTcQfJgmxCmQCJUdBOwginhmoc4dIjkD83RJwTfzBcsP6xsBcYE-6FP3RaP8tjgiQRFbKLynD6HhyI8yyiYhm~Zsc-Jgihc55QEoC3ok3AgFcCD512tgGB6helO9RULCvCxHeUJ8Rx1gh-gza6pStu0t5HUq5jNRAxo5YrcHgjM8TTADmtWI2rD0uMG~hvkqMmazOUV7PnZfN~rH-etW9mG8eqlWAHFUi~4UUec6zOxka7u6MouEG67IeUMx-2wG-GnVlQ8qn96ypmFgU4SbWXdoTJzD7V~pEu4awzAnzEiuw3MpJ96KwpYnvHYoj1fg2UraCFQ__');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.7), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    color: white;
    padding: 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--terracotta);
    color: white;
    box-shadow: 0 10px 25px rgba(201, 125, 96, 0.3);
}

.btn-primary:hover {
    background-color: #b86d50;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 35px rgba(201, 125, 96, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    fill: var(--cream);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--cream);
    text-align: center;
}

.about h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.section-divider {
    width: 6rem;
    height: 0.25rem;
    background-color: var(--sage);
    margin: 0 auto 3rem;
    border-radius: 9999px;
}

.section-divider.accent {
    background-color: var(--terracotta);
}

.about-text {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--navy);
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--cream);
}

.services h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--navy);
    text-align: center;
    margin-bottom: 1rem;
}

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

.service-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 16rem;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-placeholder {
    background: linear-gradient(135deg, var(--sage), var(--terracotta));
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: white;
}

.placeholder-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.placeholder-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose {
    padding: 5rem 0;
    background-color: white;
}

.why-choose h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--navy);
    text-align: center;
    margin-bottom: 1rem;
}

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

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--cream);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-content h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--cream);
}

.contact h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--navy);
    text-align: center;
    margin-bottom: 1rem;
}

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

.contact-info h3,
.contact-form-wrapper h3 {
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.phone-icon {
    background-color: var(--sage);
}

.email-icon {
    background-color: var(--terracotta);
}

.address-icon {
    background-color: var(--navy);
}

.contact-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--sage);
}

.contact-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
}

.map-container {
    margin-top: 2rem;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#form-success {
    background-color: rgba(139, 157, 131, 0.1);
    border: 2px solid var(--sage);
    color: var(--navy);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.success-icon {
    color: var(--sage);
    margin: 0 auto 1rem;
}

#form-success h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(139, 157, 131, 0.1);
}

.error-message {
    color: #ef4444;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-submit {
    width: 100%;
    background-color: var(--terracotta);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #b86d50;
    box-shadow: 0 10px 25px rgba(201, 125, 96, 0.3);
}

/* Footer */
.footer {
    background-color: var(--navy);
    color: white;
    padding: 3rem 0;
}

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

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--terracotta);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-cta {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
