/* Footer Styling */
.footer-category--full {
    flex: 1.5;
    min-width: 280px;
}
.footer-category--subscribe {
    flex: 1;
    min-width: 250px;
}
.footer-category--myaqr {
    flex: 0.8;
    min-width: 200px;
}
.footer-info {
    padding: 10px 0;
}
.footer-info__text {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 15px;
    opacity: 0.9;
}
.footer-info__email {
    font-size: 15px;
    color: #009FDF;
    margin: 0;
}
.footer-info__email a {
    color: #009FDF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer-info__email a:hover {
    color: #00adf0;
    text-decoration: underline;
}
.footer-subscribe {
    padding: 10px 0;
}
.footer-subscribe__text {
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 15px;
    opacity: 0.9;
}
.footer-subscribe__form {
    display: flex;
    gap: 8px;
}
.footer-subscribe__input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}
.footer-subscribe__input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.footer-subscribe__input:focus {
    outline: none;
    border-color: #009FDF;
    background: rgba(255, 255, 255, 0.15);
}
.footer-subscribe__button {
    padding: 12px 20px;
    background: #009FDF;
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.footer-subscribe__button:hover {
    background: #00adf0;
    transform: translateY(-2px);
}
.footer-category__name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 20px;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

}
.footer-links .cta {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
    display: inline-block;
    transition: all 0.3s ease;
    opacity: 0.8;
}
.footer-links .cta:hover {
    color: #009FDF;
    opacity: 1;
    transform: translateX(3px);
}
.global-footer__content .footer-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}
.global-footer__content .footer-categories > li {
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .footer-category--full,
    .footer-category--subscribe,
    .footer-category--myaqr {
        flex: 100%;
        min-width: 100%;
    }
    .footer-subscribe__form {
        flex-direction: column;
    }
    .footer-subscribe__button {
        width: 100%;
    }
}

/* Subscribe Modal */
.subscribe-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}
.subscribe-modal.active {
    display: block;
}
.subscribe-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}
.subscribe-modal__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: subscribeModalSlideIn 0.3s ease;
}
@keyframes subscribeModalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}
.subscribe-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}
.subscribe-modal__close:hover {
    color: #333;
}
.subscribe-modal__title {
    font-size: 24px;
    font-weight: 700;
    color: #012169;
    margin: 0 0 15px;
}
.subscribe-modal__text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 25px;
}
.subscribe-modal__button {
    padding: 14px 40px;
    background: #009FDF;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.subscribe-modal__button:hover {
    background: #00adf0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 159, 223, 0.3);
}
