/* Contact Page Styles */
.contact-header {
    padding: 160px 0 60px;
    position: relative;
    border-bottom: 1px solid var(--clr-glass-border);
    background: radial-gradient(circle at 50% 100%, rgba(0, 230, 118, 0.1), transparent 60%);
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 5rem 0 8rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 230, 118, 0.1);
    border-color: rgba(0, 230, 118, 0.3);
}

.contact-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--clr-text-main);
}

.card-desc {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
}

.contact-item:hover {
    background: rgba(0, 230, 118, 0.05);
    border-color: rgba(0, 230, 118, 0.2);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--clr-surface-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--clr-glass-border);
    color: var(--clr-primary-bright);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.contact-value {
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--clr-primary-bright);
}

.contact-value:hover {
    color: var(--clr-accent);
}

.social-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
}

.social-item:hover {
    background: rgba(0, 230, 118, 0.08);
    border-color: rgba(0, 230, 118, 0.3);
    transform: translateX(5px);
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.facebook { background: #1877F2; }
.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.twitter { background: #000; border: 1px solid rgba(255,255,255,0.2); }
.tiktok { background: #000; border: 1px solid rgba(255,255,255,0.2); position: relative; }

/* Custom TikTok drop shadows */
.tiktok svg {
    filter: drop-shadow(2px 2px 0px #ff0050) drop-shadow(-2px -2px 0px #00f2fe);
}

.social-name {
    font-weight: 500;
    color: var(--clr-text-main);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 500px) {
    .social-links-grid {
        grid-template-columns: 1fr;
    }
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
