/* Contact Form */
.contact {
    width: 100%;    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    margin-bottom: 5rem;

    & .main-contact {
        width: 100%;    
        display: flex;
        justify-content: space-between;
        padding: 2rem;
        margin-bottom: 5rem;

        & .text {
            width: 48%;
            padding-right: 2rem;
            border-right: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            justify-content: center;

            & .text-wrapper {
                margin-top: 5rem;
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: start;

                & h2 {
                    color: var(--accent-gold);
                }
            }
        }

        & .contact-form {
            width: 50% ;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            & .inp-wrapper {
                width: 75%;
                display: flex;
                flex-direction: column;
                align-items: start;
                margin-bottom: 2rem;

                & input {
                    background: var(--bg-elevated);
                    color: var(--text-primary);
                    border: none;
                    border-bottom: 1px solid var(--border);
                    border-left: 1px solid var(--border);
                    padding: .2rem 0;
                    font-size: 1rem;
                    width: 100%;
                }

                & textarea {
                    width: 100%;
                    border: none;
                    background: var(--bg-elevated);
                    color: var(--text-primary);
                    font-family: 'SpaceGrotesk', system-ui, -apple-system, sans-serif;
                }
            }

            & button {
                margin-top: 2rem;
                background: var(--accent-gold);
                color: var(--bg-main);
                font-size: 1rem;
                padding: .5rem 2rem;
            }
        }
    }
}


/* Consultancy */
.consultancy {
    width: 100%;
    display: flex;
    flex-direction: column;

    & header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5rem 2rem;
        margin-bottom: 3rem;

        & h2 {
            color: var(--accent-gold);
            font-size: 2.5rem;
        }
    }

    & .main-consultancy {
        padding: 2rem;

        & h3 {
            margin: 2rem 0;
            color: var(--accent-gold-soft);
            font-size: 1.2rem;
            text-align: center;
        }

        & .text-wrapper {
            width: 100%;
            display: flex;
            justify-content: space-between;
            margin: 3rem 0;

            & p {
                width: 49%;
            }
        }

        & hr {
            margin: 2rem 0;
        }

        & .note {
            color: var(--accent-gold-soft);
            text-align: center;

            & .occ {
                color: var(--accent-gold);
                font-weight: 900;
                font-size: 1.2rem;
            }
        }

        & .consultancy-form {
            margin: 3rem 0;
            margin-top: 5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;

            & .inp-wrapper {
                width: 50%;
                display: flex;
                flex-direction: column;
                align-items: start;
                margin-bottom: 2rem;

                & input {
                    background: var(--bg-elevated);
                    color: var(--text-primary);
                    border: none;
                    border-bottom: 1px solid var(--border);
                    border-left: 1px solid var(--border);
                    padding: .2rem 0;
                    font-size: 1rem;
                    width: 100%;
                }

                & textarea {
                    width: 100%;
                    border: none;
                    background: var(--bg-elevated);
                    color: var(--text-primary);
                    font-family: 'SpaceGrotesk', system-ui, -apple-system, sans-serif;
                }
            }

            & button {
                margin-top: 2rem;
                background: var(--accent-gold);
                color: var(--bg-main);
                font-size: 1rem;
                padding: .5rem 2rem;
            }
        }
    }
}




@media screen and (max-width: 900px) {
    .contact {
        & .main-contact {
            flex-direction: column;

            & .text {
                width: 100%;
                padding-right: 0;
                padding-bottom: 2rem;
                border: none;
                border-bottom: 1px solid var(--border);
            }

            & .contact-form {
                width: 100%;
            }
        }
    }

    .consultancy {
        & .main-consultancy {
            & .text-wrapper {
                flex-direction: column;
                text-align: center;

                & p {
                    width: 100%;
                }
            }

            & .consultancy-form {
                & .inp-wrapper {
                    width: 100%;
                }
            }
        }
    }
}