* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-dark: #173f2c;
    --green: #246a43;
    --green-light: #72dc78;
    --cream: #f4f2e9;
    --white: #ffffff;
    --text-dark: #1c2922;
    --text-soft: #667069;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    min-height: 86px;
    padding: 0 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.navbar.scrolled {
    min-height: 74px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: 200px;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: #27352e;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--green);
    transition: 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-button {
    padding: 13px 22px;
    border-radius: 999px;

    color: var(--white);
    background: var(--green-dark);

    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;

    transition: 0.3s ease;
}

.nav-button:hover {
    background: var(--green);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background: var(--green-dark);
    transition: 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 82px;
    left: 0;
    z-index: 999;

    width: 100%;
    padding: 24px 6% 30px;

    display: flex;
    flex-direction: column;
    gap: 20px;

    background: #ffffff;
    box-shadow: 0 18px 25px rgba(0, 0, 0, 0.12);

    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: 0.35s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu a {
    display: block;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 700;
    color: #1c2922;
}

.mobile-cta {
    margin-top: 8px;
    padding: 15px !important;
    border-radius: 999px;

    text-align: center;
    color: white !important;
    background: #173f2c;
}

.mobile-cta {
    margin-top: 5px;
    padding: 14px;
    border-radius: 999px;

    text-align: center;
    color: var(--white);
    background: var(--green-dark);
}

/* HERO */

.hero {
    position: relative;

    min-height: 100vh;
    padding: 155px 7% 90px;

    display: flex;
    align-items: center;

    color: var(--white);

    background:
        url("images/hero.jpg")
        center center / cover no-repeat;

}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(11, 37, 23, 0.91) 0%,
            rgba(11, 37, 23, 0.7) 46%,
            rgba(11, 37, 23, 0.18) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-label {
    display: inline-block;
    margin-bottom: 24px;
    padding: 10px 16px;

    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 24px;

    font-size: clamp(48px, 6.5vw, 88px);
    line-height: 1.02;
    letter-spacing: -4px;
}

.hero p {
    max-width: 620px;
    margin-bottom: 34px;

    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.button-primary,
.button-secondary {
    min-height: 55px;
    padding: 0 27px;
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 700;

    transition: 0.3s ease;
}

.button-primary {
    color: #13351f;
    background: var(--green-light);
}

.button-primary:hover {
    background: #95ed98;
    transform: translateY(-3px);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.56);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
    color: var(--green-dark);
    background: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    margin-top: 58px;

    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-stats strong {
    font-size: 24px;
}

.hero-stats span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

.scroll-down {
    position: absolute;
    right: 7%;
    bottom: 38px;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-down span {
    position: relative;
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.4);
}

.scroll-down span::after {
    content: "";
    position: absolute;
    left: -2px;
    top: 0;

    width: 5px;
    height: 12px;
    border-radius: 99px;
    background: var(--white);

    animation: scrollMove 1.8s infinite;
}

@keyframes scrollMove {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(35px);
    }
}

/* SERVICES */

.services {
    padding: 110px 7%;
    background: var(--cream);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.section-heading span {
    display: block;
    margin-bottom: 12px;

    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 20px;

    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.section-heading p {
    max-width: 650px;

    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.75;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    overflow: hidden;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(23, 63, 44, 0.12);
    border-radius: 18px;

    background: #ffffff;

    box-shadow: 0 12px 32px rgba(17, 45, 30, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

   cursor: pointer;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.01);

    border-color: rgba(36, 106, 67, 0.28);

    box-shadow:
        0 28px 60px rgba(17, 45, 30, 0.20);
}

.service-image {
    width: 100%;
    height: 240px;

    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-content {
    flex: 1;
    padding: 26px;

    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 14px;

    color: var(--text-dark);

    font-size: 27px;
    line-height: 1.2;
}

.service-content p {
    margin-bottom: 22px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.75;
}

.service-link {
    margin-top: auto;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;

    padding: 12px 22px;

    background: #1f6b42;
    color: #fff;

    border-radius: 999px;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}

.service-link:hover {
    background: #2d8a55;
    transform: translateY(-2px);
}

.service-link i {
    font-size: 18px;
}

/* WHATSAPP */

.whatsapp-button {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1100;

    min-height: 56px;
    padding: 0 24px;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    color: #ffffff;
    background: #568b3d;

    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.whatsapp-button:hover {
    background: #426f2e;
    transform: translateY(-3px);
}

.whatsapp-icon {
    font-size: 25px;
    color: #ffffff;
}

/* ABOUT */

.about {
    padding: 110px 7%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    background: #ffffff;
}

.about-image {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-radius: 6px;
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(14, 53, 31, 0.32)
    );
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}

.section-label {
    display: block;
    margin-bottom: 14px;

    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content h2 {
    max-width: 650px;
    margin-bottom: 24px;

    font-size: clamp(38px, 4.8vw, 62px);
    line-height: 1.06;
    letter-spacing: -2px;
}

.about-content > p {
    max-width: 620px;
    margin-bottom: 38px;

    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.8;
}

.about-points {
    margin-bottom: 38px;
}

.about-point {
    padding: 22px 0;

    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;

    border-top: 1px solid rgba(31, 71, 49, 0.14);
}

.about-point:last-child {
    border-bottom: 1px solid rgba(31, 71, 49, 0.14);
}

.about-point > strong {
    color: var(--green);
    font-size: 13px;
}

.about-point h3 {
    margin-bottom: 8px;
    font-size: 19px;
}

.about-point p {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.about-button {
    min-height: 54px;
    padding: 0 25px;
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: var(--green-dark);

    font-size: 15px;
    font-weight: 700;

    transition: 0.3s ease;
}

.about-button:hover {
    background: var(--green);
    transform: translateY(-3px);
}

/* PORTFOLIO */

.portfolio {
    padding: 110px 7%;
    color: #ffffff;
    background: #102c1f;
}

.portfolio-heading {
    margin-bottom: 55px;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: end;
}

.portfolio-heading h2 {
    max-width: 780px;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -2.5px;
}

.portfolio-heading > p {
    max-width: 470px;

    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.8;
}

.portfolio .section-label {
    color: #7fe083;
}

/* FEATURED PROJECT */

.featured-project {
    position: relative;

    width: 100%;
    height: 650px;

    overflow: hidden;
    border-radius: 10px;
}

.featured-project img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition: transform 0.8s ease;
}

.featured-project:hover img {
    transform: scale(1.04);
}

.featured-project-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02) 25%,
            rgba(5, 25, 14, 0.88) 100%
        );
}

.featured-project-content {
    position: absolute;
    left: 45px;
    right: 45px;
    bottom: 42px;
    z-index: 2;

    max-width: 680px;
}

.featured-project-content > span,
.project-card-content > span {
    display: block;
    margin-bottom: 11px;

    color: #87e98b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.featured-project-content h3 {
    margin-bottom: 10px;

    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.featured-project-content p {
    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
}

.featured-project-content a {
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);

    font-size: 14px;
    font-weight: 700;

    backdrop-filter: blur(8px);
    transition: 0.3s ease;
}

.featured-project-content a:hover {
    color: #173f2c;
    background: #ffffff;
    transform: translateY(-3px);
}

/* PROJECT GRID */

.project-grid {
    margin-top: 22px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.project-card {
    position: relative;

    height: 420px;

    overflow: hidden;
    border-radius: 10px;
}

.project-card img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition: transform 0.7s ease;
}

.project-card:hover img {
    transform: scale(1.06);
}

.project-card-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02) 35%,
            rgba(4, 23, 13, 0.86) 100%
        );
}

.project-card-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 28px;
    z-index: 2;
}

.project-card-content h3 {
    margin-bottom: 8px;

    font-size: 28px;
    line-height: 1.15;
}

.project-card-content p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

/* PORTFOLIO CTA */

.portfolio-cta {
    margin-top: 60px;
    padding-top: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.portfolio-cta span {
    display: block;
    margin-bottom: 9px;

    color: #87e98b;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.portfolio-cta h3 {
    max-width: 700px;

    font-size: clamp(28px, 3.5vw, 45px);
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.portfolio-cta > a {
    min-height: 55px;
    padding: 0 26px;
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #143321;
    background: #7fe083;

    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;

    transition: 0.3s ease;
}

.portfolio-cta > a:hover {
    background: #9af09e;
    transform: translateY(-3px);
}

/* PROCESS */

.process {
    padding: 110px 7%;
    background: #f4f2e9;
}

.process-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.process-heading h2 {
    margin-bottom: 20px;

    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.process-heading p {
    max-width: 650px;

    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.75;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(23, 63, 44, 0.18);
    border-bottom: 1px solid rgba(23, 63, 44, 0.18);
}

.process-card {
    min-height: 330px;
    padding: 32px 24px;

    border-right: 1px solid rgba(23, 63, 44, 0.18);
    transition: 0.35s ease;
}

.process-card:last-child {
    border-right: none;
}

.process-card:hover {
    color: #ffffff;
    background: var(--green-dark);
    transform: translateY(-6px);
}

.process-number {
    display: block;
    margin-bottom: 75px;

    color: var(--green);
    font-size: 13px;
    font-weight: 800;
}

.process-card:hover .process-number {
    color: var(--green-light);
}

.process-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 1.2;
}

.process-card p {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.process-card:hover p {
    color: rgba(255, 255, 255, 0.72);
}

/* TESTIMONIALS */

.testimonials {
    padding: 110px 7%;
    background: #ffffff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    min-height: 320px;
    padding: 32px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(23, 63, 44, 0.13);
    background: #f8f7f1;

    transition: 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(16, 44, 31, 0.1);
}

.testimonial-stars {
    margin-bottom: 28px;

    color: #2c7449;
    font-size: 17px;
    letter-spacing: 3px;
}

.testimonial-card > p {
    margin-bottom: 35px;

    color: #35443c;
    font-size: 17px;
    line-height: 1.75;
}

.testimonial-person {
    margin-top: auto;

    display: flex;
    flex-direction: column;
    gap: 6px;
}

.testimonial-person strong {
    font-size: 16px;
}

.testimonial-person span {
    color: var(--text-soft);
    font-size: 13px;
}

/* FAQ */

.faq {
    padding: 110px 7%;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;

    background: #f4f2e9;
}

.faq-heading h2 {
    margin-bottom: 20px;

    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.faq-heading p {
    max-width: 480px;

    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.75;
}

.faq-list {
    border-top: 1px solid rgba(23, 63, 44, 0.18);
}

.faq-item {
    border-bottom: 1px solid rgba(23, 63, 44, 0.18);
}

.faq-question {
    width: 100%;
    padding: 25px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    border: none;
    color: var(--text-dark);
    background: transparent;

    text-align: left;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
}

.faq-icon {
    flex-shrink: 0;

    color: var(--green);
    font-size: 26px;
    font-weight: 400;

    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 45px 25px 0;

    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.75;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* FINAL CTA */

.final-cta {
    position: relative;

    min-height: 650px;
    padding: 100px 7%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background:
        url("images/hero.jpg")
        center / cover no-repeat;
}

.final-cta-overlay {
    position: absolute;
    inset: 0;

    background: rgba(9, 36, 21, 0.78);
}

.final-cta-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    text-align: center;
}

.final-cta-content > span {
    display: block;
    margin-bottom: 18px;

    color: #8ee993;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.final-cta-content h2 {
    margin-bottom: 24px;

    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.03;
    letter-spacing: -3px;
}

.final-cta-content p {
    max-width: 650px;
    margin: 0 auto 34px;

    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.75;
}

.final-cta-button {
    min-height: 58px;
    padding: 0 28px;
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #143321;
    background: #82e586;

    font-size: 15px;
    font-weight: 800;

    transition: 0.3s ease;
}

.final-cta-button i {
    font-size: 22px;
}

.final-cta-button:hover {
    background: #a0f0a3;
    transform: translateY(-3px);
}

/* FOOTER */

.footer {
    padding: 85px 7% 28px;
    color: #ffffff;
    background: #091e15;
}

.footer-top {
    padding-bottom: 60px;

    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.8fr 1fr;
    gap: 55px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    width: 210px;
    height: 58px;
    overflow: hidden;
}

.footer-logo img {
    width: 210px;
    height: 58px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.footer-brand > p {
    max-width: 360px;

    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.75;
}

.footer-social {
    margin-top: 26px;

    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: #143321;
    background: #82e586;
    border-color: #82e586;
    transform: translateY(-3px);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.footer-column h3 {
    margin-bottom: 10px;
    font-size: 17px;
}

.footer-column a,
.footer-column p,
.footer-column span {
    color: rgba(255, 255, 255, 0.63);
    font-size: 14px;
    line-height: 1.6;
}

.footer-column a {
    transition: 0.25s ease;
}

.footer-column a:hover {
    color: #82e586;
    transform: translateX(4px);
}

.footer-contact a,
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    margin-top: 4px;
    color: #82e586;
}

.footer-bottom {
    padding-top: 26px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.back-to-top {
    display: flex;
    align-items: center;
    gap: 9px;

    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 700;

    transition: 0.3s ease;
}

.back-to-top:hover {
    color: #82e586;
}


/* RESPONSIVE */

@media (max-width: 1050px) {
    .nav-menu,
    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .navbar {
        min-height: 76px;
        padding: 0 5%;
    }

    .logo img {
        width: 170px;
    }

    .hero {
        min-height: 95vh;
        padding: 130px 6% 75px;
    }

    .hero h1 {
        font-size: 50px;
        letter-spacing: -2px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-stats {
        gap: 25px;
    }

    .scroll-down {
        display: none;
    }

    .services {
        padding: 85px 6%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .logo img {
        width: 150px;
    }

    .hero h1 {
        font-size: 41px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 18px;
    }

    .service-card {
        min-height: 300px;
    }
}

@media (max-width: 760px) {
    .hero {
        padding-top: 190px;
    }
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 520px) {
    .whatsapp-button {
        left: 18px;
        right: 18px;
        bottom: 18px;

        width: auto;
        min-height: 54px;
        padding: 0 16px;

        font-size: 15px;
    }
}

@media (max-width: 900px) {
    .about {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-image,
    .about-image img {
        min-height: 480px;
    }
}

@media (max-width: 520px) {
    .about {
        padding: 80px 6%;
    }

    .about-image,
    .about-image img {
        min-height: 380px;
    }

    .about-content h2 {
        font-size: 38px;
    }
}

@media (max-width: 900px) {
    .portfolio-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .featured-project {
        height: 530px;
    }

    .project-card {
        height: 360px;
    }

    .portfolio-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .portfolio {
        padding: 80px 5%;
    }

    .portfolio-heading {
        margin-bottom: 36px;
    }

    .portfolio-heading h2 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .featured-project {
        height: 480px;
        border-radius: 8px;
    }

    .featured-project-content {
        left: 22px;
        right: 22px;
        bottom: 26px;
    }

    .featured-project-content h3 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .featured-project-content a {
        width: 100%;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .project-card {
        height: 340px;
        border-radius: 8px;
    }

    .project-card-content {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .project-card-content h3 {
        font-size: 25px;
    }

    .portfolio-cta {
        margin-top: 45px;
        padding-top: 34px;
    }

    .portfolio-cta h3 {
        font-size: 31px;
    }

    .portfolio-cta > a {
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        border-bottom: none;
    }

    .process-card {
        border-bottom: 1px solid rgba(23, 63, 44, 0.18);
    }

    .process-card:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .process {
        padding: 80px 6%;
    }

    .process-heading h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: 0;
        padding: 28px 22px;
        border-right: none;
    }

    .process-number {
        margin-bottom: 42px;
    }
}

@media (max-width: 900px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .faq {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width: 600px) {
    .testimonials,
    .faq {
        padding: 80px 6%;
    }

    .testimonial-card {
        min-height: 280px;
        padding: 26px;
    }

    .faq-heading h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .faq-question {
        font-size: 17px;
    }

    .final-cta {
        min-height: 620px;
        padding: 90px 6%;
    }

    .final-cta-content h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .final-cta-button {
        width: 100%;
    }
}

@media (max-width: 1000px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 70px 6% 115px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-logo img {
        width: 175px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 65px 6% 130px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-logo {
        width: 190px;
        height: 52px;
        margin-bottom: 18px;
    }

    .footer-logo img {
        width: 190px;
        height: 52px;
    }

    .footer-brand > p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.7;
    }

    .footer-social {
        margin-top: 20px;
    }

    .footer-column {
        gap: 11px;
    }

    .footer-bottom {
        margin-top: 8px;
        padding-top: 22px;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-image {
        height: 220px;
    }

    .service-content {
        padding: 22px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-content p {
        font-size: 14px;
    }
}

.service-image {
    height: 260px;
}

.service-content {
    padding: 28px 28px 30px;
}

.service-content h3 {
    margin-bottom: 16px;
}

.service-content p {
    margin-bottom: 24px;
}

.services {
    padding-bottom: 130px;
}

@media (max-width: 600px) {
    .service-image {
        height: 230px;
    }

    .service-content {
        padding: 24px;
    }

    .services {
        padding-bottom: 120px;
    }
}