/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #00A86B;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-white: #FFFFFF;
    --bg-overlay: rgba(0, 0, 0, 0.5);
}

html {
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    width: 100%;
    background-color: var(--bg-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    min-height: 70px;
    box-sizing: border-box;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.navigation {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 600px;
    background-image: url('breakroom.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-inner {
    max-width: 1200px;
    width: 100%;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-title-large {
    font-size: 64px;
    font-weight: 800;
    display: block;
    margin-top: 8px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: white;
    font-weight: 400;
    max-width: 600px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Intro Section */
.intro-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.intro-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Impact Section */
.impact-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.impact-container {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #F8F9FA;
    padding: 60px;
    border-radius: 12px;
}

.impact-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.impact-icon svg {
    width: 100%;
    height: 100%;
}

.impact-content {
    flex: 1;
}

.impact-headline {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 16px;
    line-height: 1.3;
}

.impact-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* About Section */
.about-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-container {
    background-color: #F8F9FA;
    padding: 60px;
    border-radius: 12px;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-text:last-child {
    margin-bottom: 0;
}

.about-text-emphasis {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-green);
    font-style: italic;
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #E5E5E5;
    margin-top: 32px;
}

/* Values Section */
.values-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E5E5;
    position: relative;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-icon .material-icons {
    font-size: 60px;
    color: var(--primary-green);
}

.value-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.value-check {
    width: 24px;
    height: 24px;
    margin-bottom: 16px;
}

.value-check svg {
    width: 100%;
    height: 100%;
}

.value-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Locations Section */
.locations-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.locations-headline {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.location-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E5E5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.location-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #E5E5E5;
}

.office-image {
    background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=600&q=80');
}

.apartment-image {
    background-image: url('https://images.unsplash.com/photo-1556912172-45b7abe8b7e1?w=600&q=80');
}

.fitness-image {
    background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=600&q=80');
}

.warehouse-image {
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=600&q=80');
}

.location-label {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--bg-white);
    padding: 40px 0;
    margin-top: 80px;
    border-top: 1px solid #E5E5E5;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container,
    .hero-content,
    .intro-section,
    .impact-section,
    .about-section,
    .values-section,
    .locations-section,
    .footer-container {
        padding: 0 30px;
    }

    .values-container {
        gap: 30px;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-container {
        padding: 50px 40px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-text {
        font-size: 17px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-title-large {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .navigation {
        gap: 20px;
    }

    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-title-large {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .impact-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .impact-headline {
        font-size: 28px;
    }

    .about-container {
        padding: 40px 30px;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .about-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .about-text-emphasis {
        font-size: 18px;
        margin-top: 24px;
        padding-top: 20px;
    }

    .values-container {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .intro-section,
    .impact-section,
    .about-section,
    .values-section,
    .locations-section {
        margin: 60px auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-title-large {
        font-size: 36px;
    }

    .impact-headline {
        font-size: 24px;
    }

    .about-container {
        padding: 40px 30px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-text {
        font-size: 16px;
    }

    .about-text-emphasis {
        font-size: 18px;
    }

    .locations-headline {
        font-size: 28px;
    }

    .value-card {
        padding: 30px;
    }
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 20px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: #F8F9FA;
    padding: 40px;
    border-radius: 8px;
}

.contact-info-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-phone {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

.phone-link {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #008A55;
    text-decoration: underline;
}

.contact-info-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid #E5E5E5;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    padding: 14px 32px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.form-submit:hover {
    background: #008A55;
}

.form-submit:active {
    transform: translateY(1px);
}

.form-message {
    max-width: 1000px;
    margin: 0 auto 30px;
    padding: 16px 20px;
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
}

.form-message-success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.form-message-error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-subtitle {
        font-size: 18px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 30px;
    }
}
