


.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select {
  position: relative;
  user-select: none;
}

.select-trigger {
  background: #f0f0f0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
    border-radius: 8px;
  padding: 16px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  background: #F1F1F11A;
  color: #fff;
}

.placeholder {
font-weight: 500;
        color: #757385;
}

.select-trigger .arrow {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.options {
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  top: calc(100% + 5px);
  display: none;
  flex-direction: column;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.option {
  padding: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.option:hover {
  background: #f7f7f7;
}

.option.active {
  background: #e0e0e0;
}


.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 170px;
    padding-bottom: 98px;
}

@media (max-width: 500px) {
    .contact-section {
        padding-bottom: 62px;
    }
}

.contact-container {
    max-width: 1217px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1220px) {
    .contact-container {
        max-width: 100%;
        width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 1000px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}


.contact-text-info {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    @media (max-width: 1000px) {
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .title {
        font-size: 40px;
        font-weight: 700;
        line-height: 56px;
        color: #fff;

        mark {
            background: linear-gradient(180deg, #16FF4A 0%, #16FF4A 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }

    @media (max-width: 1000px) {
        .title {
            text-align: center;
            font-size: 32px;
            line-height: 32px;
        }
    }

    .contact-text {
        font-size: 20px;
        font-weight: 400;
        line-height: 24px;
        color: #fff;
        margin-top: 32px;
        max-width: 402px;
    }


    @media (max-width: 1000px) {
        .contact-text {
            text-align: center;
            max-width: 100%;
        }
    }

    .commnuication-channels {
        margin-top:79px;
        max-width: 411px;
        display: flex;
        flex-direction: column;

        .communication-channel {
            display: flex;
            flex-direction: row;
            align-items: center;
            padding-bottom: 32px;
            gap: 8px;
            padding-top: 32px;
            border-bottom: 1px solid #FFFFFF1A;

            a {
                text-decoration: none;
                color: #fff;
            }
        }

        .communication-channel:last-child {
            border-bottom: none;
        }
    }

    @media (max-width: 1000px) {
        .commnuication-channels {
            align-items: center;
            justify-content: center;
            margin-top: 24px;
        }
    }

    .illustration-contact {
        margin-top: 69px;
        width: 519px;
        height: 60px;
    }
}


 .form-container {
    max-width: 488px;
    width: 100%;
    padding: 48px 40px;
    border-radius: 12px;
    background: #1F2724;

    @media (max-width: 500px) {
        max-width: 100%;
        padding: 38px 22px;
    }

    

    .form-title {
        font-size: 14px;
        font-weight: 500;
        line-height: 21px;
        color: #fff;
        text-transform: uppercase;
        color:#16FF4A;
        font-family: 'Sora', sans-serif;
    }

    @media (max-width: 500px) {
        .form-title {
            text-align: center;
        }
    }

    .form-subtitle {
        font-size: 28px;
        font-weight: 500;
        line-height: 35px;
        color: #fff;
        margin-top: 8px;
        font-family: 'Sora', sans-serif;
    }

    @media (max-width: 500px) {
        .form-subtitle {
            text-align: center;
            font-size: 24px;
            line-height: 32px;
            width: 100%;
        }
    }

    .form-content {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
    }

    .form-content input, textarea {
        width: 100%;
        height: 56px;
        border-radius: 8px;
        padding: 16px;
        border: 1px solid transparent;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        background: #F1F1F11A;
        color: #fff;
        font-family: 'Inter', sans-serif;
    }

    .form-content textarea {
        height: 120px;
        resize: none;
    }

    .form-content input:focus, textarea:focus {
        outline: none;
        border: 1px solid #16FF4A
    }

    .form-content input::placeholder {
        color: #16FF4A;
        font-weight: 500;
        color: #757385;
        font-family: 'Inter', sans-serif;
    }

    .form-content button {
        width: 100%;
        height: 56px;
        border-radius: 8px;
        border: none;
        margin-top: 8px;
        background: #16FF4A;
        font-size: 18px;
        font-weight: 700;
        line-height: 24px;
        color: #000;
        transition: background 0.3s ease;
        font-family: 'Inter', sans-serif;
        cursor: pointer;
    }

    .form-content button:hover {
        background: #11912d;
    }

    .consent-text {
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        color: #fff;
        margin-top: 34px;
    }

    @media (max-width: 500px) {
        .consent-text {
            text-align: center;
        }
    }

    .consent-text a {
        color: #fff;
    }
 }



.quote-section {

    .quote-image-illustration {
        margin-top:44px;
        position: relative;
        max-width: 459px;
        height: 482px;
        border-radius: 16px;

        .illustration-contact {
            position: absolute;
            z-index: 1;
            right: -70px;
            bottom: -70px;
            width: 519px;
            height: 120px;
        }
    }

    @media (max-width: 1000px) {
        .quote-image-illustration {
            display: none;
        }
    }

     .form-container {
        max-width: 595px;
    }

    @media (max-width: 1000px) {
        .form-container {
            max-width: 100%;
            margin-top: 32px;
        }
    }

    .contact-text-info {
        justify-content: flex-start;
        margin-top: 49px;
    }
}

@media (max-width: 1000px) {
    .quote-section {
        padding-top: 100px;
        padding-bottom: 69px;
    }
}


.extra-info {

    display: flex;
    flex-direction: column;
    gap: 20px;

    .form-title {
        font-size: 14px;
        font-weight: 500;
        line-height: 21px;
        color: #fff;
        text-transform: uppercase;
        color:#fff;
    }

    .form-row {
        display: grid;
        grid-template-columns: 180px 1fr;
        align-items: center;
        gap: 16px;

        label {
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            color: #fff;
            opacity: 0.7;
        }

        .form-row-control {
            display: flex;
            flex-direction: row;
            gap: 8px;
            align-items: flex-end;
            justify-content: flex-end;
        }

        .form-btn {
            width: 99px;
            height: 40px;
            font-size: 16px;
            font-weight: 600;
            background: #F1F1F11A;
            color: #757385;


        }

        .form-btn:hover, .active {
            color: #1F2724;
            background: #16FF4A;
        }
    }

    @media (max-width: 600px) {
        .form-row {
            grid-template-columns: 1fr;
            align-items: flex-start;
            justify-content: flex-start;
        }

       .form-row .form-row-control {
            justify-content: flex-start;
            align-items: flex-start;
        }
    }
}