/* Premium Footer Styles */
.premium-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Footer Hero Section */
.footer-hero {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-hero-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.brand-info {
    flex: 1;
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e6ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    font-size: 1.1rem;
    color: #b0c4de;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.ancient-blessing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.blessing-text {
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.blessing-divider {
    color: #8a9ba8;
    font-size: 1.2rem;
}

/* Contact Card */
.footer-contact-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 2rem;
    min-width: 320px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    flex-shrink: 0;
}

.contact-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #4ade80;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.contact-method.primary {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-method.primary:hover {
    background: linear-gradient(135deg, #0077dd 0%, #0055aa 100%);
}

.method-icon {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
}

.method-info {
    flex: 1;
}

.method-label {
    font-size: 0.85rem;
    color: #b0c4de;
    margin-bottom: 0.2rem;
}

.method-value {
    font-size: 1rem;
    font-weight: 600;
}

/* Quick Access Grid */
.footer-quick-access {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.quick-section {
    text-align: center;
}

.section-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.quick-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 0.8rem;
}

.quick-links a {
    color: #b0c4de;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.3rem 0;
}

.quick-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Credentials Section */
.footer-credentials {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.office-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.office-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.office-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.office-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #4ade80;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.status-indicator.active {
    animation: pulse-dot 2s infinite;
}

.office-details p {
    margin: 0.8rem 0;
    color: #b0c4de;
    line-height: 1.6;
}

.office-address {
    font-weight: 500;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cert-badge.premium {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cert-badge.premium:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cert-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.cert-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.cert-subtitle {
    font-size: 0.85rem;
    color: #8a9ba8;
}

/* Bottom Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.legal-info p {
    margin: 0.3rem 0;
    color: #8a9ba8;
    font-size: 0.9rem;
}

.security-indicators {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.security-badge.premium {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.last-updated {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-quick-access {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-credentials {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-hero {
        padding: 3rem 0 2rem;
    }
    
    .brand-title {
        font-size: 2rem;
    }
    
    .footer-contact-card {
        min-width: auto;
    }
    
    .footer-quick-access {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .security-indicators {
        flex-wrap: wrap;
        justify-content: center;
    }
}
