/* Contact Page Styles */

.contact-hero {
    text-align: center;
    margin: 4rem 0 6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero h1 {
    font-size: 5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.contact-hero .hero-text {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.7;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 6rem;
}

.method-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(78, 115, 145, 0.15);
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(78, 115, 145, 0.2);
    border-color: rgba(78, 115, 145, 0.3);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.method-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon.email {
    background: rgba(78, 115, 145, 0.15);
}

.method-icon.linkedin {
    background: rgba(0, 119, 181, 0.15);
}

.method-icon svg {
    width: 35px;
    height: 35px;
}

.method-icon.email svg {
    fill: #4e7391;
}

.method-icon.linkedin svg {
    fill: #0077b5;
}

.method-header h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.method-note {
    font-size: 0.95rem;
    color: #999;
}

.contact-link {
    font-size: 1.2rem;
    color: #4e7391;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #6b9080;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.social-grid {
    margin-bottom: 6rem;
}

.social-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.social-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.social-card.twitter:hover {
    border-color: #1da1f2;
}

.social-card.instagram:hover {
    border-color: #e4405f;
}

.social-card.github:hover {
    border-color: #333;
}

.social-card svg {
    width: 50px;
    height: 50px;
    fill: #4e7391;
    transition: fill 0.3s;
}

.social-card.twitter:hover svg {
    fill: #1da1f2;
}

.social-card.instagram:hover svg {
    fill: #e4405f;
}

.social-card.github:hover svg {
    fill: #333;
}

.social-card span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
}

.organizations-section {
    margin-bottom: 6rem;
}

.org-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.org-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 3rem;
    border-radius: 16px;
    border-left: 4px solid #6b9080;
}

.org-card h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.org-card p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.org-card a {
    font-size: 1.05rem;
    color: #4e7391;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.org-card a:hover {
    color: #6b9080;
}

.availability-section {
    background: linear-gradient(135deg, rgba(78, 115, 145, 0.08), rgba(107, 144, 128, 0.08));
    padding: 4rem;
    border-radius: 20px;
    margin-bottom: 6rem;
}

.availability-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.availability-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.availability-list li {
    font-size: 1.2rem;
    color: #555;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.availability-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4e7391;
    font-weight: bold;
    font-size: 1.4rem;
}

.response-note {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin-top: 2rem;
}

@media (max-width: 968px) {
    .contact-hero h1 {
        font-size: 3rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .social-cards {
        grid-template-columns: 1fr;
    }

    .org-cards {
        grid-template-columns: 1fr;
    }
}