.premium-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 60px 0 0;
    margin-top: 60px;
}

.premium-footer-main {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    margin-bottom: 25px;
}

.footer-column h5 {
    color: #a12c2f;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-column ul li a:hover {
    color: #a12c2f;
    padding-left: 5px;
}

.footer-column ul li a:before {
    content: "\2192";
    margin-right: -12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover:before {
    opacity: 1;
}

.company-info {
    margin-bottom: 15px;
}

.company-info p {
    color: #ccc;
    font-size: 13px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background-color: #a12c2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-links a:hover {
    background-color: #fff;
    color: #a12c2f;
    transform: translateY(-3px);
}

.app-download {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-download a {
    transition: all 0.3s ease;
    display: inline-block;
}

.app-download a img {
    width: 120px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.app-download a:hover img {
    transform: scale(1.05);
}

.newsletter-section {
    background-color: rgba(161, 44, 47, 0.15);
    padding: 15px 20px;
    border-left: 4px solid #a12c2f;
    border-radius: 4px;
    margin: 0 auto 25px auto;
    max-width: 800px;
}

.newsletter-section h6 {
    color: #a12c2f;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px;
}

.newsletter-section p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 6px;
}

.newsletter-form input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #a12c2f;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 8px 18px;
    background-color: #a12c2f;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 13px;
}

.newsletter-form button:hover {
    background-color: #8e2527;
    transform: translateY(-2px);
}

.newsletter-message {
    font-size: 13px;
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

.premium-footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #a12c2f;
}

.copyright-text {
    color: #999;
    font-size: 13px;
}

.credit-text {
    color: #999;
    font-size: 12px;
}

.credit-text a {
    color: #a12c2f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.credit-text a:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .premium-footer {
        padding: 50px 0 0;
        margin-top: 40px;
    }

    .premium-footer-main {
        padding: 24px 0;
    }

    .footer-column,
    .footer-column h5,
    .company-info p {
        text-align: center;
    }

    .footer-column ul li a {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .app-download {
        align-items: center;
    }

    .newsletter-section {
        max-width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .premium-footer-main {
        padding: 30px 0;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .footer-bottom-links {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .premium-footer {
        padding: 40px 0 0;
    }

    .newsletter-section {
        padding: 12px 14px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 6px;
    }

    .app-download a img {
        width: 140px;
    }
}
