/* Footer - Enhanced Luxury */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem; /* Increased from 1.1rem */
    font-weight: 500; /* Increased from 400 */
    margin-bottom: 1.5rem; /* Increased spacing */
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem; /* Increased from 0.9rem */
    font-weight: 400; /* Increased from 300 */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.footer-links a:hover {
    color: var(--accent-rose-gold);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

/* Professional Cards */
.professional-card {
    background: var(--glass-secondary);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin: 1.5rem 0;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glass);
}

.professional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 29, 149, 0.03) 0%, rgba(107, 28, 62, 0.01) 100%);
    border-radius: 16px;
    pointer-events: none;
}

.professional-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-active);
    box-shadow: var(--shadow-deep);
}

.professional-card p {
    position: relative;
    z-index: 1;
}

/* Neutral charcoal cards */
.professional-card-neutral {
    background: var(--bg-tertiary);
    border: 1px solid rgba(80, 80, 80, 0.15);
}

.professional-card-neutral::before {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.4) 0%, rgba(35, 35, 35, 0.2) 100%);
}

.professional-card-neutral:hover {
    border-color: rgba(120, 120, 120, 0.3);
    background: rgba(25, 25, 25, 0.85);
}

/* Accent card for summary statement */
.professional-card-accent {
    background: var(--glass-secondary);
    border: 1px solid var(--border-burgundy);
}

.professional-card-accent::before {
    background: linear-gradient(135deg, rgba(76, 29, 149, 0.08) 0%, rgba(107, 28, 62, 0.05) 100%);
}

.professional-card-accent:hover {
    border-color: var(--accent-rose-gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.15);
}