/* Modern Footer Styling */
.footer {
    background-color: #1a1a1a;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer .list-unstyled li {
    margin-bottom: 12px;
}

.footer .social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.footer .social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Tursab Badge - Glassmorphism */
.tursab-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 15px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tursab-badge:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.tursab-badge img {
    max-height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.tursab-info {
    display: flex;
    flex-direction: column;
}

.tursab-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.tursab-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.footerhr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.newsletter-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-box .form-control {
    border-color: rgba(255, 255, 255, 0.1);
}

.newsletter-box .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Simple Newsletter */
.newsletter-simple {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-simple .form-control {
    border-color: rgba(255, 255, 255, 0.1);
}

.newsletter-simple .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}