.promo-container {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 72px 0;
}

.promo-content-wrapper {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    backdrop-filter: blur(60px);
    box-shadow: 0 7px 30px 0 #00000075;
    background: #F7F7F70D;
}

.promo-content-wrapper-telegram {
    max-height: 360px;
}

.promo-content-wrapper-form {
    max-height: 100%;
}

.telegram-info-container {
    display: flex;
    gap: 40px;
    padding: 28px;
    max-height: inherit;
}

.telegram-infotext-section {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-height: 240px;
    max-width: 507px;
}

.telegram-info-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 125%;
    color: var(--text-white);
}

.telegram-infotext-section a {
    max-width: 240px;
}

.telegram-info-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: var(--text-white);
    padding-bottom: 12px;
}

.telegram-phone-mockup-section {
    transform: translateY(-70px);
}

.telegram-phone-mockup-section img {
    transform: scale(1.14);
}

.telegram-hashtags-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
}

a.hashtag-button {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: var(--main-darck);
    box-shadow: 0px 4px 14px 0px #00000029;
    border-radius: 30px;
    padding: 12px;
    background-color: var(--text-white);
    transition: all ease var(--transition-speed);
    text-align: center;
    width: max-content;
}

a.hashtag-button:hover {
    transform: scale(1.05);
    transition: all ease var(--transition-speed);
}

footer {
    background-color: var(--text-white);
    width: 100%;
    padding: 60px 0;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    gap: 100px;
}

.footer-column-right {
    display: flex;
    gap: 40px;
    width: 100%;
    justify-content: space-between;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 262px;
}

.contact-info-button {
    display: flex;
    margin-top: 12px;
}

.footer-column-left {
    min-width: 260px;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.contact-info,
.category-list,
.address-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 12px;
}

.footer-block-title {
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: var(--text-darck-opacity);
}

.contact-info a {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
}

.contact-info a,
.menu-list a,
.category-list a {
    color: var(--main-darck);
    text-decoration: none;
    transition: all ease var(--transition-speed);
}

.contact-info a:hover,
.menu-list a:hover,
.category-list a:hover {
    color: var(--main-darck-hover);
    transition: all ease var(--transition-speed);
}

.social-links {
    display: flex;
    gap: 8px;
}


.address-list li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: var(--main-darck);
    transition: all ease var(--transition-speed);
}

.address-list li a:hover {
    color: var(--main-red);
    transition: all ease var(--transition-speed);
}

.footer-bottom {
    margin: 40px auto 0;
    padding-top: 23px;
    border-top: 1px solid var(--text-darck-opacity);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-bottom span,
.contact-info span,
.footer-bottom a {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-decoration: none;
    color: var(--text-darck-opacity);
    transition: all ease var(--transition-speed);
}

.footer-bottom a {
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
}

.footer-bottom a:hover {
    color: var(--main-darck-hover);
    transition: all ease var(--transition-speed);
}

.form-card {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 38px;
}

@media (max-width: 1025px) {
    .form-card {
        flex-direction: column;
        gap: 40px;
    }
}

.left-column {
    flex: 1;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-right: 5%;
}

.left-column h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 125%;
}

.left-column p {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
}

.form-container {
    flex: 1;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--input-boder-color);
    color: var(--text-white);
    border-radius: 0;
    padding: 10px 0 20px;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}

.input-group input::placeholder {
    color: var(--input-boder-color);
}

.input-group input:focus {
    outline: none;
    border-bottom-color: #ef4444;
}

/* Captcha Section */
.captcha-box {
    display: flex;
    align-items: center;
    background-color: white;
    color: var(--main-darck);
    border-radius: 8px;
    padding: 16px;
    gap: 16px;
}

.captcha-box label {
    font-weight: 500;
    color: var(--main-darck-hover);
    cursor: pointer;
}

.captcha-box p {
    font-weight: 400;
    color: var(--main-darck);
    margin-top: 4px;
}

.captcha-box a {
    color: #3b82f6;
}

.captcha-box .question-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 9999px;
    background-color: #e5e7eb;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all ease var(--transition-speed);
}

.captcha-box .question-icon:hover {
    background-color: #d1d5db;
}

.disclaimer {
    font-weight: 400;
    text-align: center;
    font-size: 12px;
    color: var(--input-boder-color);
    margin-top: 24px;
    line-height: 130%;
}

.disclaimer a {
    color: var(--main-red);
}

.success-message {
    text-align: center;
    color: var(--text-white);
    flex: 1;
}

.success-message h2 {
    font-weight: 700;
    color: var(--main-darck-hover);
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--text-white);
}

.hidden {
    display: none;
}

.error-message {
    font-size: 0.875rem;
    color: var(--main-red);
    margin-top: 0.25rem;
    display: none;
}

.error-message:not(.hidden) {
    display: block;
}

.social-links-adn-office-opening-hours {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.office-opening-hours, .social-links-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.our-addresses {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
}

.address-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.privacy-block {
    display: flex;
    gap: 39px;
}

@media (max-width: 1025px) {

    .telegram-infotext-section {
        max-height: 216px;
        max-width: 370px;
    }

    .telegram-info-container {
        justify-content: space-between;
    }

    .telegram-phone-mockup-section img {
        max-height: 260px;
    }

    .promo-container {
        padding: 70px 0 60px;
    }

    .promo-content-wrapper {
        padding: 24px
    }

    .telegram-info-container {
        padding: 0;
    }

    .telegram-info-title {
        font-size: 28px;
    }

    .telegram-info-subtitle {
        font-size: 14px;
        padding-bottom: 4px;
    }

    .promo-content-wrapper-telegram {
        max-height: 264px;
    }

    .telegram-phone-mockup-section {
        transform: translateY(-40px);
    }

    .telegram-hashtags-section {
        display: none;
    }

    footer {
        padding: 36px 0 40px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        flex-wrap: wrap;
    }

    .footer-content .desktop {
        display: none;
    }

    .footer-content .mobile {
        display: block;
    }

    .footer-column {
        min-width: 260px;
        max-width: 402px;
    }

    .footer-column-right .footer-column:nth-child(2) {
        width: 100%;
    }

    .footer-column-right {
        flex-wrap: wrap;
    }

    .contact-info {
        padding-bottom: 8px;
    }

    .contact-info a {
        font-size: 20px;
    }

    .social-links-adn-office-opening-hours {
        flex-direction: row;
    }

    .our-addresses {
        padding-top: 16px;
    }

    .footer-bottom span {
        display: none;
    }

    .contact-info span {
        font-size: 14px;
        padding-top: 20px;
    }

    .footer-bottom a {
        font-size: 12px;
    }

    .footer-bottom {
        padding-top: 40px;
    }

    .privacy-block span {
        display: none;
    }

    .privacy-block {
        display: flex;
        gap: 65px;
    }

    .privacy-block a {
        min-width: 260px;
    }
}

@media (max-width: 767px) {
    .telegram-infotext-section {
        max-height: max-content;
        max-width: max-content;
    }

    .footer-column-left {
        min-width: 200px;
        max-width: 200px;
    }

    .footer-content {
        gap: 32px;
    }

    .footer-column-right {
        gap: 32px;
    }

    .footer-column {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .contact-info span {
        display: none;
    }

    .social-links-adn-office-opening-hours {
        flex-direction: column-reverse;
    }

    .footer-bottom {
        margin: 32px auto 0;
        padding-top: 32px;
    }

    .footer-bottom span {
        display: block;
    }

    .privacy-block span {
        display: none;
    }

    .privacy-block {
        gap: 16px;
        flex-direction: column;
    }

    .promo-container {
        padding: 60px 0;
    }

    .telegram-phone-mockup-section {
        display: none;
    }

    .telegram-info-title {
        font-size: 24px;
    }

    .promo-content-wrapper-telegram {
        max-height: max-content;
    }
}