/* Amazing Footer Styles - Extracted from journey_gallery.css */
.amazing-footer {
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
    border-top: 3px solid #8a2be2;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8a2be2, #6366f1, #8a2be2);
    animation: glowLine 3s ease-in-out infinite;
}

@keyframes glowLine {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Compact Footer Layout */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Sections */
.footer-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.1);
    transition: all 0.3s ease;
    height: fit-content;
}

.footer-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
    border-color: rgba(138, 43, 226, 0.3);
}

/* Section Headers */
.amazing-footer .section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
}

.amazing-footer .section-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin: 0;
    background: linear-gradient(135deg, #8a2be2, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.amazing-footer .header-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8a2be2, transparent);
    border-radius: 1px;
}

.pulse-icon {
    color: #8a2be2;
    font-size: 14px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Social Links Grid */
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
    border-color: #8a2be2;
}

.social-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.social-link i {
    font-size: 16px;
    color: #8a2be2;
    transition: all 0.3s ease;
}

.social-link:hover i {
    color: white;
    transform: scale(1.1);
}

.social-tooltip {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
}

.social-link:hover .social-tooltip {
    opacity: 1;
    transform: translateY(-3px);
}

/* Quick Links Grid */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.quick-link-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-link-btn:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.4);
    border-color: #8a2be2;
}

.quick-link-btn i {
    font-size: 12px;
    color: #8a2be2;
    transition: all 0.3s ease;
}

.quick-link-btn span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 11px;
    transition: all 0.3s ease;
}

.quick-link-btn:hover i,
.quick-link-btn:hover span {
    color: white;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.3), transparent);
    transition: left 0.6s ease;
}

.quick-link-btn:hover .btn-glow {
    left: 100%;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateX(3px);
}

.contact-icon {
    font-size: 14px;
    color: #8a2be2;
    width: 20px;
    text-align: center;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-value:hover {
    color: #8a2be2;
}

/* Additional Links Grid */
.additional-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.additional-link-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(99, 102, 241, 0.15));
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.additional-link-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 18px rgba(138, 43, 226, 0.5);
    border-color: #8a2be2;
}

.additional-link-btn i {
    font-size: 14px;
    color: #8a2be2;
    transition: all 0.3s ease;
}

.additional-link-btn span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 11px;
    transition: all 0.3s ease;
}

.additional-link-btn:hover i,
.additional-link-btn:hover span {
    color: white;
}

/* Copyright Section */
.copyright-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    text-align: center;
    border-radius: 0;
    margin-top: 0;
}

.copyright-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.copyright-icon {
    font-size: 14px;
    color: #8a2be2;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #8a2be2, #6366f1);
    border-radius: 15px;
    color: white;
    font-size: 10px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(138, 43, 226, 0.4);
}

/* Responsive Design for Footer */
@media only screen and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
    }
    
    .footer-section {
        padding: 15px;
    }
    
    .amazing-footer .section-header h3 {
        font-size: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-section {
        padding: 12px;
        max-width: 100%;
    }
    
    .amazing-footer .section-header {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .amazing-footer .section-header h3 {
        font-size: 14px;
    }
    
    .social-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    
    .contact-info-grid {
        gap: 8px;
    }
    
    .additional-links-grid {
        gap: 6px;
    }
}

@media only screen and (max-width: 480px) {
    .footer-content {
        padding: 10px;
        gap: 10px;
        max-width: 400px;
    }
    
    .footer-section {
        padding: 10px;
        max-width: 100%;
    }
    
    .amazing-footer .section-header h3 {
        font-size: 13px;
    }
    
    .social-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    
    .copyright-content {
        flex-direction: column;
        gap: 8px;
    }
}
