:root {
    --brand-primary: #0504aa;
    --brand-primary-hover: #2e2eb1;
    --border-color: #D1D5DB;
    --focus-ring-color: #A5B4FC;
    --text-primary: #111827;
    --text-secondary: #6B7281;
    --background-light: #FFFFFF;
    --container-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

footer {
	margin: 80px 20px 0;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
    /* background: #0504aa; */
	/* color: #fff; */
    background: var(--color-bg-light);
	color: var(--color-text-primary);
}

.block__footer-copyright {
	text-align: center;
    /* color: #fff; */
	color: var(--color-text-primary);
    padding: 10px;
	font-size: .8rem;
}

.footer__logos img {
	height: 80px;
	width: auto;
}

.footer__blocks {
	display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__block {
	padding: 10px 30px;
    margin-right: 24px;
}

.footer__block--border {
	border-left: 1px solid #ffffff20;
}

.footer__block h2 {
	font-size: 1rem;
    margin-bottom: 30px;
}

.footer__link a {
	font-size: 1rem;
    /* color: #fff; */
	color: var(--color-text-primary);
    font-weight: 600;
	margin-bottom: 20px;
	display: block;
}

.social-links li {
	margin-bottom: 5px;
}

.footer__link {
	font-size: 0.8rem;
}

.chat-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #c1282e;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.chat-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(35, 129, 255, 0.4);
}

.chat-button svg {
    width: 32px;
    height: 32px;
}

.contact-support-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1001;
    width: calc(100% - 40px);
    max-width: 420px;
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15);
    border: 1px solid #E9E9E9;
    overflow: hidden;
    transform-origin: bottom right;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-support-container[hidden] {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.close-button {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: #0504aa;
    border: 2px solid #0504aa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
}

.close-button:hover {
    background-color: #FFFFFF;
    border-color: #0504aa;
}

.close-button svg {
    width: 20px;
    height: 20px;
}

.close-button svg line {
    stroke: #FFFFFF;
    transition: stroke 0.3s ease-out;
}

.close-button:hover svg line {
    stroke: #0504aa;
}

.support-form-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0px 32px 32px;
}

.contact-support-container .block__label {
    margin-bottom: 8px;
    border-bottom: 1px solid #ECECEC;
    color: #272727;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.items--wrapper-support {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-form-list .item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-form-list .item__label {
    font-size: 0.875rem;
    color: #4C5D82;
    font-weight: 600;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.support-form-list .input--default {
    border: 2px solid #E5E8F2;
    border-radius: 10px;
    color: #272727;
    padding: 0 14px;
    font-size: 1rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 500;
    height: 50px;
    background-color: #FDFDFE;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.support-form-list .input--default:focus {
    outline: none;
    border-color: #0504aa;
    box-shadow: 0 0 0 4px rgba(35, 129, 255, 0.1);
}

.support-form-list textarea.input--default {
    height: auto;
    /* min-height: 180px; */
    padding-top: 14px;
    padding-bottom: 14px;
    resize: vertical;
}

.support-form-list button[type="submit"] {
    width: 100%;
    display: inline-flex;
    padding: 0 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #0504aa;
    border-radius: 10px;
    color: #FFFFFF;
    border: 2px solid #0504aa;
    transition: all 0.3s ease-out;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    height: 50px;
    margin-top: 8px;
}

.support-form-list button[type="submit"]:hover {
    background-color: #FFFFFF;
    border-color: #0504aa;
    color: #0504aa;
}

@media(min-width: 992px) {
	.footer__blocks {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}

@media(min-width: 1200px) {
	.footer__blocks {
		grid-template-columns: 50% 1fr 1fr 1fr;
	}
}