/* Footer Component Styles - Enhanced DHA Brand */
.footer {
    background: linear-gradient(135deg, #4a4a4a 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(234, 85, 71, 0.03) 0%,
        rgba(104, 72, 47, 0.03) 50%,
        rgba(253, 198, 44, 0.03) 100%
    );
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Grid */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    position: relative;
    line-height: 1.3;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.footer-section p {
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    padding: 0.3rem 0;
    position: relative;
}

.footer-link::before {
    content: '';
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-link:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(234, 85, 71, 0.4);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(234, 85, 71, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover i {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(234, 85, 71, 0.4);
}

.contact-item p {
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Enhanced Social Media */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(234, 85, 71, 0.3);
    text-decoration: none;
    border: none;
    outline: none;
}

.social-link i {
    color: white;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(234, 85, 71, 0.4);
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Enhanced Newsletter */
.newsletter-form {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 180px;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 15px rgba(234, 85, 71, 0.2);
}

.newsletter-button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(234, 85, 71, 0.3);
    white-space: nowrap;
}

.newsletter-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    transition: left 0.3s ease;
    z-index: -1;
}

.newsletter-button:hover::before {
    left: 0;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 85, 71, 0.4);
}

/* Enhanced Copyright */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.footer-bottom p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        gap: 2rem;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        text-align: left;
    }
    
    .footer-section h3::after {
        left: 0;
        transform: none;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-section h3 {
        text-align: left;
        font-size: 1.2rem;
    }
    
    .footer-section h3::after {
        left: 0;
        transform: none;
    }
    
    .contact-item {
        justify-content: flex-start;
        text-align: left;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .newsletter-input {
        width: 100%;
        min-width: auto;
    }
    
    .newsletter-button {
        width: 100%;
        justify-self: stretch;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section h3::after {
        width: 40px;
        height: 2px;
    }
    
    .contact-item {
        gap: 0.8rem;
    }
    
    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
} 