/* ==========================================================================
   FOOTER MOBILE v2
   ========================================================================== */

.footer-mobile-v2 {
    display: none;
    width: 100%;
}

/* Show only on mobile */
@media (max-width: 768px) {
    .footer-mobile-v2 {
        display: block;
    }
}

/* --------------------------------------------------------------------------
   MAIN SECTION
   -------------------------------------------------------------------------- */

.footer-mobile-v2__main {
    background-color: #000000;
    padding: 20px 0 0;
}

/* Logo */
.footer-mobile-v2__logo {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #3a3a3a;
}

.footer-mobile-v2__logo-link {
    display: inline-block;
    text-decoration: none;
}

.footer-mobile-v2__logo-link svg {
    display: block;
}

/* --------------------------------------------------------------------------
   ACCORDION NAVIGATION
   -------------------------------------------------------------------------- */

.footer-mobile-v2__nav {
    display: flex;
    flex-direction: column;
}

.footer-mobile-v2__accordion {
    border-bottom: 1px solid #3a3a3a;
}

.footer-mobile-v2__accordion-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.footer-mobile-v2__accordion-title {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-mobile-v2__accordion-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.footer-mobile-v2__accordion-icon::before,
.footer-mobile-v2__accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #fff;
    transition: transform 0.3s ease;
}

/* Horizontal line */
.footer-mobile-v2__accordion-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

/* Vertical line */
.footer-mobile-v2__accordion-icon::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}

/* Rotate to minus when open */
.footer-mobile-v2__accordion.is-open .footer-mobile-v2__accordion-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

/* Accordion content */
.footer-mobile-v2__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.footer-mobile-v2__accordion.is-open .footer-mobile-v2__accordion-content {
    max-height: 500px;
}

/* v2: Links in column layout */
.footer-mobile-v2__accordion-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 10px;
}

.footer-mobile-v2__link {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    padding: 10px 0 10px 20px;
    transition: color 0.2s ease;
}

.footer-mobile-v2__link:hover {
    color: #ccc;
}

/* --------------------------------------------------------------------------
   CONTACTS SECTION
   -------------------------------------------------------------------------- */

.footer-mobile-v2__contacts {
    background-color: #000000;
    padding: 30px 0;
    text-align: center;
}

/* Social Links */
.footer-mobile-v2__social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-mobile-v2__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #3f3f3f;
    border: 1px solid #7b7b7b;
    border-radius: 2px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-mobile-v2__social-link:hover {
    background-color: #810615;
    border-color: #810615;
}

.footer-mobile-v2__social-link--accent {
    background-color: #810615;
    border-color: #810615;
}

.footer-mobile-v2__social-link svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* Phones */
.footer-mobile-v2__phones {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-mobile-v2__phone-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-mobile-v2__phone-label {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
}

.footer-mobile-v2__phone {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

/* Emails */
.footer-mobile-v2__emails {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.footer-mobile-v2__email {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

/* Address */
.footer-mobile-v2__address {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
    padding: 0 20px;
}

/* Working hours */
.footer-mobile-v2__hours {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   COPYRIGHT BAR
   -------------------------------------------------------------------------- */

.footer-mobile-v2__copyright {
    background-color: #000000;
    padding: 20px 0 30px;
    text-align: center;
    border-top: 1px solid #3a3a3a;
}

.footer-mobile-v2__copyright-text {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 15px;
}

.footer-mobile-v2__copyright-notice {
    color: #666;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 10px;
}

.footer-mobile-v2__copyright-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-mobile-v2__copyright-link {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-mobile-v2__copyright-link:hover {
    color: #810615;
}

.footer-mobile-v2__developers {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-mobile-v2__developer {
    color: #666;
    font-size: 11px;
    font-weight: 400;
}
