.nav-wrapper {
    background-color: var(--secondary);
    height: 90px;
}
.logo {
    width: 78px;
}
.nav-wrapper.scrolled {
    background: var(--secondary-opaque);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.55);
}
.contact-wrapper {
    padding: 100px 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-left {
    width: 32%;
}

.page-title {
    text-align: left;
    margin: 0 0 20px 0;
}

.contact-left p {
    font-size: 20px;
    line-height: 1.5;
    color: var(--black);
    font-weight: 400;
}

.contact-right {
    width: 56%;
}

.contact-right input,
.contact-right textarea {
    width: 100%;
    padding: 8px 24px;
    margin-bottom: 24px;
    border: 1px solid var(--black);
    border-radius: 25px;
    font-size: 16px;
    height: 50px;
    color: var(--black);
    font-weight: 300;
}

.contact-right input::placeholder,
.contact-right textarea::placeholder {
    color: var(--black);
}

.contact-right textarea {
    height: 150px;
    border-radius: 20px;
    resize: none;
}
.contact-right input:focus,
.contact-right textarea:focus {
    outline: none;
    border: 2px solid var(--primary);
}
.contact-submit-btn {
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 30px;
    padding: 18px 44px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    margin: 20px 0 0 0;
}
@media (max-width: 1030px) {
    .contact-left {
        width: 36%;
    }
}
@media (max-width: 768px) {
    .page-title,
    .contact-left {
        text-align: center;
    }
    .contact-wrapper {
        flex-direction: column;
        padding: 60px 0 0 0;
    }
    .contact-right,
    .contact-left {
        width: 100%;
    }
    .contact-left p {
        font-size: 20px;
        font-weight: 300;
    }
    .contact-right form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .contact-form {
        padding-bottom: 40px;
    }
}
