.footer-newsletter {
    border: 1px solid rgba(224, 162, 66, 0.5);
    padding: 20px 20px 20px 40px;
    border-radius: 6px;
    margin-bottom: 48px;
}

.footer-newsletter__inner {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.footer-newsletter__left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    min-width: 0;
}

.footer-newsletter__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
}

.footer-newsletter__icon svg {
    width: 64px;
    height: 64px;
    color: var(--color-secondary);
}

.footer-newsletter__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.footer-newsletter__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-newsletter__title {
    font-size: 23px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-newsletter__desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* Newsletter Form */
.footer-newsletter__form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    width: min(550px, 100%);
}

.footer-newsletter__input-wrap {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.footer-newsletter__input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 13px 16px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-newsletter__input:focus {
    border-color: var(--color-secondary);
    background: rgba(224, 162, 66, 0.05);
    box-shadow: 0 0 0 3px rgba(224, 162, 66, 0.1);
}

.footer-newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    background: var(--color-secondary);
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.footer-newsletter__btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.footer-newsletter__btn:hover {
    background: #d5963e;
}

.footer-newsletter__btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ============================================================
   MAIN FOOTER
   ============================================================ */
.site-footer {
    /* background: #0d0d0d; */
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer ul li {
    list-style: none;
}

.site-footer__main {
    display: grid;
    grid-template-columns: 280px repeat(3, 1fr) 265px;
    gap: 40px 32px;
    padding: 56px 0 48px;
    align-items: start;
}

/* ============================================================
   LOGO
   ============================================================ */
.site-footer__logo {
    display: flex;
    margin-bottom: 18px;
}

.site-footer__logo img {
    width: 100%;
    max-width: 240px;
}

/* Description */
.site-footer__desc {
    font-size: 14px;
    color: #FFF;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ============================================================
   SOCIAL ICONS
   ============================================================ */
.site-footer__socials ul {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.site-footer__socials ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-footer__socials ul li a img {
    width: 18px !important;
    height: 18px;
}

.site-footer__socials ul li a:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(224, 162, 66, 0.3);
}

/* ============================================================
   HEADINGS + LINKS
   ============================================================ */
.site-footer__col_link h3,
.site-footer__col--contact h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
}

.site-footer__col_link ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer__col_link ul li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #FFF;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-left: -6px;
}

.site-footer__col_link ul li a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: var(--color-secondary);
    transition: width 0.25s ease;
    flex-shrink: 0;
    margin-right: 0;
}

.site-footer__col_link ul li a:hover {
    color: var(--color-secondary);
    padding-left: 10px;
}

.site-footer__col_link ul li a:hover::before {
    width: 6px;
}

/* ============================================================
   CONTACT COLUMN
   ============================================================ */

.site-footer__col--contact ul li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFF;
    font-size: 14px;
    margin-bottom: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-footer__col--contact ul li img {
    width: 18px !important;
    height: 18px;
    flex-shrink: 0;
}

.site-footer__col--contact ul li a:hover {
    color: var(--color-secondary);
}

/* Quote */
.site-footer__quote {
    margin-top: 10px;
}

.site-footer__quote p {
    font-size: 14px;
    color: #FFF;
    line-height: 1.2;
    margin: 0 0 6px;
}

.site-footer__quote h3 {
    display: block;
    font-family: 'Dancing Script', cursive, 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
    font-style: italic;
    text-transform: inherit;
}

/* ============================================================
   BOTTOM BAR
   ============================================================ */
.site-footer__bottom {
    border-top: 2px solid rgba(224, 162, 66, 0.2);
    padding: 15px 0;
    text-align: center;
}

.site-footer__copyright {
    font-size: 14px;
    color: #FFF;
    margin: 0;
}

/* ============================================================
   BACK TO TOP — Scroll Progress
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(224, 162, 66, 0.35);
}

/* SVG progress ring */
.back-to-top__progress {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.back-to-top__track {
    stroke: rgba(255, 255, 255, 0.1);
}

.back-to-top__ring {
    stroke: var(--color-secondary);
    transition: stroke-dashoffset 0.1s linear;
}

/* Arrow icon */
.back-to-top__arrow {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    color: #fff;
    transition: color 0.3s ease;
}

.back-to-top:hover .back-to-top__arrow {
    color: var(--color-secondary);
}

/* Percent label — hidden by default, shown on hover */
.back-to-top__percent {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 600;
    color: var(--color-secondary);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.7);
    padding: 2px 6px;
    border-radius: 4px;
}

.back-to-top:hover .back-to-top__percent {
    opacity: 1;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 992px)
   ============================================================ */
@media (max-width: 992px) {
    .site-footer__main {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 32px 24px;
        padding: 44px 0px 40px;
    }

    .site-footer__col--brand {
        grid-column: 1 / -1;
    }

    .site-footer__col--brand .site-footer__desc {
        max-width: 480px;
    }

    .footer-newsletter__inner {
        gap: 24px;
    }

    .footer-newsletter__form {
        width: 100%;
    }

    .footer-newsletter__left {
        flex: unset;
        width: 100%;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
    .footer-newsletter {
        padding: 20px 0;
        margin-bottom: 20px;
    }

    .footer-newsletter__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 0 20px;
    }

    .footer-newsletter__left {
        gap: 16px;
    }

    .footer-newsletter__icon {
        width: 50px;
        height: 50px;
    }

    .footer-newsletter__icon svg {
        width: 50px;
        height: 50px;
    }

    .footer-newsletter__form {
        width: 100%;
    }

    .site-footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
        padding: 20px 0;
    }

    .site-footer__col--brand {
        grid-column: 1 / -1;
    }

    /* .site-footer__col--contact {
        grid-column: 1 / -1;
    } */

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ============================================================
   RESPONSIVE — SMALL (≤ 575px)
   ============================================================ */
@media (max-width: 575px) {
    .footer-newsletter__left {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .footer-newsletter__icon {
        width: 44px;
        height: 44px;
    }

    .footer-newsletter__icon svg {
        width: 44px;
        height: 44px;
    }

    .footer-newsletter__form {
        flex-direction: column;
        gap: 10px;
    }

    .footer-newsletter__btn {
        width: 100%;
        justify-content: center;
        padding: 13px;
    }

    .site-footer__main {
        /* grid-template-columns: 1fr; */
        gap: 24px;
    }

    .footer-newsletter__info {
        align-items: center;
        text-align: center;
    }

    /*
    .site-footer__col--brand,
    .site-footer__col--contact {
        grid-column: unset;
    } */

    .site-footer__col--contact {
        grid-column: 1 / -1;
    }

    .footer-newsletter__inner {
        padding: 0 16px;
    }

    .site-footer__quote-author {
        font-size: 18px;
    }
}

/* ============================================================
   RESPONSIVE — EXTRA SMALL (≤ 380px)
   ============================================================ */
@media (max-width: 380px) {



    .site-footer__logo-name {
        font-size: 13px;
    }

    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .back-to-top__arrow {
        width: 15px;
        height: 15px;
    }
}