/* Redesign chrome (header/nav/footer/mobile) — Phase 1. */

@font-face {
    font-family: "proximanova-light";
    font-weight: 300;
    src: url('/assets/front/fonts/ProximaNova-Light.woff2') format("woff2");
}

@font-face {
    font-family: "proximanova-regular";
    font-weight: 400;
    src: url('/assets/front/fonts/ProximaNova-Regular.woff2') format("woff2");
}

@font-face {
    font-family: "proximanova-medium";
    font-weight: 500;
    src: url('/assets/front/fonts/ProximaNova-Medium.woff2') format("woff2");
}

@font-face {
    font-family: "proximanova-semibold";
    font-weight: 600;
    src: url('/assets/front/fonts/ProximaNova-SemiBold.woff2') format("woff2");
}

@font-face {
    font-family: "proximanova-bold";
    font-weight: 700;
    src: url('/assets/front/fonts/ProximaNova-Bold.woff2') format("woff2");
}

@font-face {
    font-family: "proximanova-extrabold";
    font-weight: 800;
    src: url('/assets/front/fonts/ProximaNova-ExtraBold.woff2') format("woff2");
}

@font-face {
    font-family: "proximanova-black";
    font-weight: 900;
    src: url('/assets/front/fonts/ProximaNova-Black.woff2') format("woff2");
}

/* =========================
   ACTIONS
========================= */

.main-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-left: auto;
}


/* =========================
   LANGUAGE
========================= */

.main-header__language {
    position: relative;
}

.main-header__language-btn {
    height: 40px;
    min-width: 68px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 0 10px;

    border: 1px solid #e5e5e5;
    border-radius: 7px;

    font-size: 14px;
    cursor: pointer;
}

.main-header__language-icon {
    display: flex;
    align-items: center;
}

.main-header__language-icon img {
    width: 17px;
    height: 17px;
}

.main-header__language-btn i {
    font-size: 10px;
}


/* =========================
   USER
========================= */

.main-header__user {
    position: relative;
}

.main-header__user-btn {
    min-width: 138px;
    height: 52px;

    display: flex;
    align-items: center;

    padding: 0 12px;

    background: #ffc400;
    border-radius: 9px;

    cursor: pointer;
}

.main-header__user-icon {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffe27a;
    border-radius: 50%;
}

.main-header__user-icon img {
    width: 17px;
    height: 17px;
}

.main-header__user-text {
    margin-left: 9px;

    font-size: 13px;
    line-height: 15px;
}

.main-header__user-text a {
    color: #111;
    text-decoration: none;
}

.main-header__user-text span {
    display: block;
}

.main-header__user-btn>i {
    margin-left: auto;
    font-size: 11px;
}

/* =========================
   ABOUT MENU
========================= */

.about-menu {
    position: relative;
}

.about-menu__button {
    display: flex;
    align-items: center;
    gap: 9px;

    padding: 11px 14px;

    border-radius: 8px;

    color: #111;
    text-decoration: none;

    transition: .2s ease;
}

.about-menu__button:hover,
.about-menu.active .about-menu__button {
    background: #f5f5f5;
}

.about-menu__button i {
    font-size: 11px;

    transition: transform .2s ease;
}

.about-menu.active .about-menu__button i {
    transform: rotate(180deg);
}


/* =========================
   DROPDOWN
========================= */

.about-menu__dropdown {
    position: absolute;

    top: calc(100% + 12px);
    left: 50%;

    width: 390px;

    padding: 25px 28px;

    background: #fff;

    border-radius: 0 0 14px 14px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);

    transform: translateX(-50%);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .2s ease,
        visibility .2s ease;

    z-index: 1000;
}


/* açıq vəziyyət */

.about-menu.active .about-menu__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================
   ITEM
========================= */

.about-menu__item {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    padding: 10px 4px;

    color: #111;
    text-decoration: none;

    border-radius: 8px;

    transition: .2s ease all;
}

.about-menu__item:hover .about-menu__title {
    text-decoration: underline;
}


/* =========================
   ICON
========================= */

.about-menu__icon {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-menu__icon img {
    width: 24px;
    height: 24px;
}


/* =========================
   CONTENT
========================= */

.about-menu__content {
    flex: 1;
}

.about-menu__title {
    margin-bottom: 5px;

    color: #111;

    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
}

.about-menu__description {
    max-width: 400px;

    color: #555;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    white-space: normal;
}


/* =========================
   DROPDOWNS
========================= */

.main-header__language-dropdown,
.main-header__user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;

    display: none;

    min-width: 80px;
    margin: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);

    list-style: none;
    z-index: 100;
}

.main-header__language-dropdown a,
.main-header__user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 9px 14px;

    color: #111;
    font-size: 13px;
    text-decoration: none;
}

.main-header__language-dropdown a:hover,
.main-header__user-dropdown a:hover {
    background: #f5f5f5;
}

.main-header__user-dropdown img {
    width: 18px;
    height: 18px;
}


/* =========================
   MOBILE
========================= */

.main-header__mobile {
    margin-left: auto;
    align-items: center;
}

.main-header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.main-header__hamburger img {
    width: 24px;
    height: 24px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1399px) {

    .main-header__navigation {
        margin-left: 30px;
    }

    .main-header__navigation ul {
        gap: 20px;
    }
}

@media (max-width: 1199px) {

    .main-header .container {
        padding: 0 20px;
    }

    .main-header__navigation {
        margin-left: 25px;
    }

    .main-header__navigation ul {
        gap: 16px;
    }
}

@media (max-width: 991px) {

    .main-header .container {
        height: 70px;
    }
}

.main-header__language-dropdown {
    display: none;
}

.main-header__language.active .main-header__language-dropdown {
    display: block;
}

.main-header__user {
    position: relative;
}

.main-header__user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;

    width: 140px;
    padding: 12px;

    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);

    display: none;

    z-index: 1000;
}

.main-header__user.active .main-header__user-dropdown {
    display: block;
}

.main-header__user-dropdown a {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 42px;
    margin-bottom: 10px;

    border-radius: 12px;
    text-decoration: none;

    font-size: 16px;
    transition: .3s;
}

.main-header__user-dropdown a:last-child {
    margin-bottom: 0;
}

.main-header__user-btn i {
    transition: .3s;
}

.main-header__user.active .main-header__user-btn i {
    transform: rotate(180deg);
}


/* =========================
   FOOTER (copy 1)
========================= */

.footer-sec {
    background: #292929;
    color: #fff;
    padding-top: 48px;
}

.footer-sec .footer-top {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 1.2fr 1.4fr 1.5fr;
    gap: 45px;
    padding-bottom: 26px;
}

.footer-sec .footer-logo {
    display: inline-block;
}

.footer-sec .footer-logo img {
    width: 145.66px;
    object-fit: contain;
}

.footer-sec .footer-brand p {
    margin: 24px 0 48px;
    color: #EAECF0;
    font-weight: 500;
    font-size: 16px;
}

.footer-sec .socials {
    display: flex;
    gap: 13px;
}

.footer-sec .socials a {
    width: 43px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.98px solid #3D3D3D;
    border-radius: 7.82px;
    padding: 9.78px;
}

.footer-sec .socials img {
    width: 18px;
    height: 18px;
}

.footer-sec .footer-column h3,
.footer-sec .footer-office h3 {
    margin: 7px 0 6px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

.footer-sec .footer-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-sec .footer-column li {
    padding: 8px;
    border-radius: 6px;
}

.footer-sec .footer-column li:hover {
    background: #14141433;
}

.footer-sec .footer-column a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.footer-sec .contact ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-sec .contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    color: #e5e5e5;
    font-size: 12px;
    line-height: 1.35;
}

.footer-sec .contact li img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-sec .contact a {
    color: #e5e5e5;
    text-decoration: none;
}

.footer-sec .footer-office .map {
    width: 280px;
    height: 250px;
    overflow: hidden;
    border: 3px solid #464646;
    border-radius: 12px;
}

.footer-sec .footer-office .map img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.footer-sec .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid #444;
    color: #a9a9a9;
    border-top: 1px solid #3D3D3D;
    font-weight: 500;
    font-size: 14px;
}


.footer-sec .footer-bottom a {
    color: #e5e5e5;
    text-decoration: none;
}


/* =========================
   HEADER (copy 2)
========================= */

.main-header {
    background: #fff;
    border-bottom: 4px solid #ffc400;
    padding: 10px 0;
}

.main-header .container {
    height: 86px;
}

.main-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
}


/* =========================
   LOGO
========================= */

.main-header__logo {
    flex-shrink: 0;
}

.main-header__logo a {
    display: flex;
    align-items: center;
}

.main-header__logo img {
    display: block;
    width: 120px;
    height: auto;
}


/* =========================
   NAVIGATION
========================= */

.main-header__navigation {
    margin-left: 40px;
    flex: 1;
}

.main-header__navigation ul {
    display: flex;
    align-items: center;
    gap: 30px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.main-header__navigation li {
    white-space: nowrap;
}

.main-header__navigation a {
    display: flex;
    gap: 12px;
    color: #111;
    font-size: 14px;
    font-weight: 500;

    text-decoration: none;
}

.main-header__nav-dropdown i {
    font-size: 11px;
}


/* =========================
   ACTIONS
========================= */

.main-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-left: auto;
}


/* =========================
   LANGUAGE
========================= */

.main-header__language {
    position: relative;
}

.main-header__language-btn {
    height: 40px;
    min-width: 68px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 0 10px;

    border: 1px solid #e5e5e5;
    border-radius: 7px;

    font-size: 14px;
    cursor: pointer;
}

.main-header__language-icon {
    display: flex;
    align-items: center;
}

.main-header__language-icon img {
    width: 17px;
    height: 17px;
}

.main-header__language-btn i {
    font-size: 10px;
}


/* =========================
   USER
========================= */

.main-header__user {
    position: relative;
}

.main-header__user-btn {
    min-width: 138px;
    height: 52px;

    display: flex;
    align-items: center;

    padding: 0 12px;

    background: #ffc400;
    border-radius: 9px;

    cursor: pointer;
}

.main-header__user-icon {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffe27a;
    border-radius: 50%;
}

.main-header__user-icon img {
    width: 17px;
    height: 17px;
}

.main-header__user-text {
    margin-left: 9px;

    font-size: 13px;
    line-height: 15px;
}

.main-header__user-text a {
    color: #111;
    text-decoration: none;
}

.main-header__user-text span {
    display: block;
}

.main-header__user-btn>i {
    margin-left: auto;
    font-size: 11px;
}

/* =========================
   ABOUT MENU
========================= */

.about-menu {
    position: relative;
}

.about-menu__button {
    display: flex;
    align-items: center;
    gap: 9px;

    padding: 11px 14px;

    border-radius: 8px;

    color: #111;
    text-decoration: none;

    transition: .2s ease;
}

.about-menu__button:hover,
.about-menu.active .about-menu__button {
    background: #f5f5f5;
}

.about-menu__button i {
    font-size: 11px;

    transition: transform .2s ease;
}

.about-menu.active .about-menu__button i {
    transform: rotate(180deg);
}


/* =========================
   DROPDOWN
========================= */

.about-menu__dropdown {
    position: absolute;

    top: calc(100% + 12px);
    left: 50%;

    width: 390px;

    padding: 25px 28px;

    background: #fff;

    border-radius: 0 0 14px 14px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);

    transform: translateX(-50%);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .2s ease,
        visibility .2s ease;

    z-index: 1000;
}


/* açıq vəziyyət */

.about-menu.active .about-menu__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================
   ITEM
========================= */

.about-menu__item {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    padding: 10px 4px;

    color: #111;
    text-decoration: none;

    border-radius: 8px;

    transition: .2s ease all;
}

.about-menu__item:hover .about-menu__title {
    text-decoration: underline;
}


/* =========================
   ICON
========================= */

.about-menu__icon {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-menu__icon img {
    width: 24px;
    height: 24px;
}


/* =========================
   CONTENT
========================= */

.about-menu__content {
    flex: 1;
}

.about-menu__title {
    margin-bottom: 5px;

    color: #111;

    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
}

.about-menu__description {
    max-width: 400px;

    color: #555;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    white-space: normal;
}


/* =========================
   DROPDOWNS
========================= */

.main-header__language-dropdown,
.main-header__user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;

    display: none;

    min-width: 80px;
    margin: 0;

    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);

    list-style: none;
    z-index: 100;
}

.main-header__language-dropdown a,
.main-header__user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 9px 14px;

    color: #111;
    font-size: 13px;
    text-decoration: none;
}

.main-header__language-dropdown a:hover,
.main-header__user-dropdown a:hover {
    background: #f5f5f5;
}

.main-header__user-dropdown img {
    width: 18px;
    height: 18px;
}


/* =========================
   MOBILE
========================= */

.main-header__mobile {
    margin-left: auto;
    align-items: center;
}

.main-header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.main-header__hamburger img {
    width: 20px;
    height: 20px;
}


/* =========================
   FOOTER (copy 2)
========================= */

.footer-sec {
    background: #292929;
    color: #fff;
    padding-top: 48px;
}

.footer-sec .footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 26px;
}

.footer-sec .footer-columns {
    display: flex;
    gap: 45px;
}

.footer-sec .footer-columns .links {
    display: flex;
    gap: 45px;
    justify-content: space-between;
}

.footer-sec .footer-logo {
    display: inline-block;
}

.footer-sec .footer-logo img {
    width: 145.66px;
    object-fit: contain;
}

.footer-sec .footer-brand p {
    margin: 24px 0 48px;
    color: #EAECF0;
    font-weight: 500;
    font-size: 16px;
    width: 50%;
}

.footer-sec .socials {
    display: flex;
    gap: 13px;
}

.footer-sec .socials a {
    width: 43px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.98px solid #3D3D3D;
    border-radius: 7.82px;
    padding: 9.78px;
}

.footer-sec .socials img {
    width: 18px;
    height: 18px;
}

.footer-sec .footer-column h3,
.footer-sec .footer-office h3 {
    margin: 7px 0 6px;
    color: #fff;
    font-family: 'proximanova-semibold';
    font-size: 16px;
}

.footer-sec .footer-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-sec .footer-column li {
    padding: 8px;
    border-radius: 6px;
    max-width: 236px;
}

.footer-sec .footer-column li:hover {
    background: #14141433;
}

.footer-sec .footer-column a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.footer-sec .contact ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-sec .contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #e5e5e5;
    font-size: 14px;
    line-height: 1.35;
    font-family: "proximanova-regular";
}

.footer-sec .contact li img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-sec .contact a {
    color: #e5e5e5;
    text-decoration: none;
}

.footer-sec .footer-office .map {
    width: 280px;
    height: 250px;
    overflow: hidden;
    border: 3px solid #464646;
    border-radius: 12px;
}

.footer-sec .footer-office .map img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.footer-sec .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid #444;
    color: #a9a9a9;
    border-top: 1px solid #3D3D3D;
    font-weight: 500;
    font-size: 14px;
}


.footer-sec .footer-bottom a {
    color: #e5e5e5;
    text-decoration: none;
}


/* Car Details */

.fix-whatsapp {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 100;
    width: 55px;
    height: 55px;
    border-radius: 8px;
    padding: 9.6px;
    background-color: #45C654CC;
}


.fix-whatsapp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =====================================================
   MOBILE HEADER
===================================================== */

.main-header__mobile {
    display: none;
}


/* =====================================================
   MOBILE SIDEBAR
===================================================== */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, .55);

    opacity: 0;
    visibility: hidden;

    transition: opacity .3s ease,
        visibility .3s ease;

    z-index: 1998;
}


.mobile-sidebar {
    position: fixed;

    top: 0;
    right: 0;

    width: 357px;
    height: 100vh;

    background: #fff;

    transform: translateX(100%);

    transition: transform .35s ease;

    z-index: 1999;

    overflow-y: auto;
}


/* =====================================================
   SIDEBAR OPEN
===================================================== */

body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

body.mobile-menu-open .mobile-sidebar {
    transform: translateX(0);
}


/* =====================================================
   SIDEBAR HEADER
===================================================== */

.mobile-sidebar__header {
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 2px solid #FFCC00;
    margin: 0 20px;
}


.mobile-sidebar__logo {
    display: flex;
    align-items: center;
}


.mobile-sidebar__logo img {
    width: 82px;
    height: auto;
    display: block;
}


.mobile-sidebar__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EBEBEB;
    color: #292929;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    border: none;
}


.mobile-sidebar__close i {
    font-size: 16px;
}


/* =====================================================
   SIDEBAR BODY
===================================================== */

.mobile-sidebar__body {
    padding: 24px 20px 30px;
}


/* =====================================================
   MAIN MENU
===================================================== */

.mobile-sidebar__menu {
    margin: 0;
    padding: 0;

    list-style: none;
}


.mobile-sidebar__menu li {
    border-bottom: 1px solid #e9e9e9;
}


.mobile-sidebar__menu li a,
.mobile-sidebar__submenu li a {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    color: #111;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}


.mobile-sidebar__menu li a i,
.mobile-sidebar__submenu li a i {
    color: #aaa;
    font-size: 9px;
}

.mobile-sidebar__section {
    margin-bottom: 28px;
}

.mobile-sidebar__section-title {
    display: inline-flex;
    align-items: center;
    margin-bottom: 3px;
    padding: 2px 4px;
    color: #DCB000;
    font-family: 'proximanova-semibold';
    font-size: 14px;
    background-color: #FFF8DB;
    padding-top: 4px;
    padding-right: 6px;
    padding-bottom: 4px;
    padding-left: 6px;
    border-radius: 4px;
}



.mobile-sidebar__submenu {
    margin: 0;
    padding: 0;
    list-style: none;
}


.mobile-sidebar__submenu li {
    border-bottom: 1px solid #e9e9e9;
}


.mobile-sidebar__submenu li a {
    padding-left: 4px;
}


/* =====================================================
   B2B
===================================================== */

.mobile-sidebar__menu--bottom {
    margin-top: 2px;
}


/* =====================================================
   MOBILE HEADER CONTENT
===================================================== */

.main-header__hamburger {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    border-radius: 5px;

    background: #f1f1f1;

    cursor: pointer;
}


.main-header__hamburger img {
    width: 16px;
    height: 16px;
    transform: scaleX(-1);
}


/* =========================
   SIGN BUTTONS (base)
========================= */

.sign-buttons {
    display: none;
}


/* =========================
   RESPONSIVE @media chrome
========================= */

@media (max-width: 1024px) {

    .footer-sec .footer-top {
        flex-direction: column;
    }

    .footer-sec .footer-brand {
        display: flex;
        justify-content: space-between;
    }

    .footer-sec .footer-brand p {
        width: 80%;
    }

    .fix-whatsapp {
        right: 12px;
    }

    .main-header__inner {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;
    }

    /* Logo */
    .main-header__logo {
        position: relative;

        margin-left: 40px;
    }

    .main-header__logo img {
        width: 82px;
    }

    /* Hamburger */
    .main-header__mobile {
        position: absolute;

        left: 0;
        top: 50%;

        transform: translateY(-50%);

        display: flex !important;
        align-items: center;
    }

    .main-header__hamburger {
        display: flex;
        align-items: center;
        justify-content: center;

        padding: 0;

        border: 0;
        border-radius: 5px;

        background: #f1f1f1;

        cursor: pointer;
    }

    /* Desktop navigation gizlənir */
    .main-header__navigation {
        display: none !important;
    }

    /* Sağ tərəf */
    .main-header__actions {
        display: flex !important;
        align-items: center;

        gap: 7px;
        margin-left: auto;
    }
}

@media (max-width: 768px) {

    .footer-sec .footer-brand .head {
        display: flex;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-sec .footer-brand p {
        width: 50%;
        margin-top: 0;
    }

    .footer-sec .footer-columns {
        flex-wrap: wrap;
    }

    .footer-sec .footer-office {
        width: 100%;
    }

    .footer-sec .footer-office .map {
        width: 100%;
        height: 200px;
    }

    .footer-sec .footer-office .map iframe {
        width: 100%;
    }

    .fix-whatsapp {
        padding: 6.5px;
        width: 48px;
        height: 48px;
    }

    .footer-sec .footer-columns {
        gap: 20px;
    }
}

@media (max-width: 440px) {

    .sign-buttons {
        display: flex;
        gap: 12px;
        width: 100%;
        margin-top: 20px;
    }

    .sign-buttons a {
        flex: 1;
        height: 40px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 1px solid #ddd;
        border-radius: 6px;

        color: #141414;
        text-decoration: none;
        font-size: 16px;
    }

    .sign-buttons a:last-child {
        background: #ffcc00;
        border-color: #ffcc00;
    }

    .footer-sec .footer-columns .links {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-sec .footer-columns .contact li {
        max-width: 100%;
    }

    .footer-sec .footer-brand .head {
        flex-direction: column;
    }

    .fix-whatsapp {
        right: 8px;
        width: 40px;
        height: 40px;
        padding: 6px;
    }

    .main-header__user-btn {
        display: none;
    }
}

.login-btn {
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #111;
}

.login-btn:hover {
    background: #fff !important;
}

.register-btn {
    background: #FFC107;
    color: #111;
}

.register-btn:hover {
    background: #FFC107 !important;
}

header.main-header {
    position: static;
}
