/* Footer Wrapper*/
.ott-footer {
    position: relative;
    color: #fff;
    overflow: hidden;
}

/* Footer Background*/
.footer-top {
    background: var(--primary);
    padding: 3.2rem 0 1.5rem;
}

/* Footer Overlay Texture*/
.ott-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12));
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
}

/* Footer Content Layer*/
.footer-top .ott-container {
    position: relative;
    z-index: 2;
}

/* Footer Brand*/
.footer-title {
    font-family: "Calistoga", serif;
    font-size: 2rem;
    letter-spacing: 0.6px;
    line-height: 1.1;
}

.footer-p {
    margin: 0;
    margin-top: 0.9rem;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 600;
    opacity: 0.95;
    max-width: 420px;
    text-align: left;
}

/* Footer Head*/
.footer-head {
    font-family: "Calistoga", serif;
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
    letter-spacing: 0.2px;
}

/* Footer List*/
.footer-list {
    margin: 0;
    padding-left: 1.1rem;
}

.footer-list li {
    margin: 0.38rem 0;
}

/* Footer Link*/
.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.95;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Footer Contact*/
.footer-contact {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.85;
    opacity: 0.95;
}

/* Media Social Icon*/
.footer-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-icons a {
    color: #fff;
    font-size: 1.55rem;
    opacity: 0.95;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.footer-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Footer Bottom Bar*/
.footer-bottom-bar {
    position: relative;
    z-index: 2;
    background: #7a1a1a;
    text-align: center;
    padding: 0.9rem 0;
    font-family: "Calistoga", serif;
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive*/
@media (max-width: 991px) {
    .footer-top {
        padding: 2.4rem 0 2.1rem;
    }

    .footer-title {
        font-size: 1.7rem;
    }

    .footer-head {
        font-size: 1.15rem;
    }

    .footer-p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .footer-link,
    .footer-contact {
        font-size: 0.92rem;
    }

    .footer-icons a {
        font-size: 1.35rem;
    }

    .footer-bottom-bar {
        font-size: 0.95rem;
        padding: 1rem 0;
    }
}

@media (max-width: 575px) {
    .footer-title {
        font-size: 1.55rem;
    }

    .footer-p {
        line-height: 1.7;
        text-align: justify;
    }

    .footer-icons {
        gap: 12px;
    }
}
