.primary {
    width: 100vw;
    overflow: hidden;
}

.hero {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
}

.slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    z-index: 10;
}

.slogan p {
    width: 100%;
    max-width: 680px;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-title);
    text-align: center;
    line-height: 130%;
}

@media (min-width: 768px) {
    .slogan p {
        font-size: 5rem;
    }
}

/* About Section */
.about-section {
    width: 100vw;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: -8rem;
    align-self: stretch;
    padding: 1rem;
    z-index: 100;
    position: relative;
}

.about-content {
    width: 100%;
    max-width: 1024px;
    display: flex;
    justify-content: center;
}

.about-text {
    color: var(--color-title);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8rem;
    padding: 0 1rem;
    text-align: center;
}

.about-stats {
    width: 100%;
    max-width: 1024px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
}

.stat {
    padding: 1rem;
    background: var(--color-light-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
}

.stat-lg .stat-label {
    font-size: 3rem;
}

.stat-number {
    color: var(--color-accent);
}

.stat-desc {
    font-size: 1rem;
    color: var(--color-text);
}

@media (min-width: 768px) {
    .about-section {
        gap: 4rem;
        margin-top: -6rem;
    }

    .about-text {
        font-size: 1.5rem;
        line-height: 2.2rem;
        text-align: justify;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(1, 1fr);
    }

    .stat {
        padding: 2rem;
    }

    .stat-lg {
        grid-column: span 1;
        grid-row: span 2;
    }
}

/* Projects Section */
.projects-section {
    width: 100vw;
    max-width: 1280px;
    margin: 0 auto;
    margin-top: 2.5rem;
    padding: 2.5rem 1rem;
}

.projects-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-title);
}

.section-title p {
    max-width: 580px;
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text);
    text-align: center;
}

.projects {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    text-decoration: none;
}

.project-card:last-of-type {
    align-self: flex-end;
}

.project-image {
    width: 100%;
    height: auto;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.project-card:hover .project-image {
    filter: grayscale(0);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-title {
    font-size: 1.5rem;
    color: var(--color-text);
    font-weight: 500;
}

.projects-link {
    font-size: 1.15rem;
    color: var(--color-background);
    font-weight: 700;
    text-decoration: none;
    padding: 0.75rem 2rem;
    background: var(--color-accent);
    transition: box-shadow 0.25s ease-in-out;
}

.projects-link:hover {
    box-shadow: 10px 8px 0 0 var(--color-text);
}

@media (min-width: 768px) {
    .projects-section {
        margin-top: 4rem;
        padding: 4rem 1rem;
    }

    .projects-content {
        gap: 5rem;
    }

    .project-card {
        max-width: 60%;
    }

    .section-title h2 {
        font-size: 3.5rem;
    }

    .section-title p {
        font-size: 1.5rem;
    }
}

/* Contact Us Section */
.contact-us {
    width: 100vw;
    max-width: 1280px;
    margin: 2.5rem auto 0 auto;
    padding: 2.5rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-us-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 2rem;
}

.contact-us-map {
    width: 100%;
    flex: 1;
}

.contact-us-map iframe {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: grayscale(1);
}

.contact-us-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: right;
    gap: 1rem;
}

.contact-us-slogan {
    color: var(--color-text);
    font-size: 1.25rem;
    font-weight: 300;
}

.contact-us-title {
    max-width: 450px;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 130%;
    color: var(--color-title);
}

.contact-us-btn {
    margin-top: 1rem;
    width: fit-content;
    font-size: 1.15rem;
    color: var(--color-background);
    font-weight: 700;
    text-decoration: none;
    padding: 0.75rem 2rem;
    background: var(--color-accent);
    transition: box-shadow 0.25s ease-in-out;
}

.contact-us-btn:hover {
    box-shadow: 10px 8px 0 0 var(--color-text);
}

@media (min-width: 768px) {
    .contact-us {
        margin-top: 4rem;
        padding: 4rem 1rem;
    }

    .contact-us-container {
        flex-direction: row;
    }

    .contact-us-map {
        width: auto;
        flex: 1;
    }

    .contact-us-map iframe {
        height: 350px;
    }
}