/* Contact Page Specific Styles */

.contact-section {
    padding: 140px 0 100px;
    min-height: 100vh;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.contact-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 8px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 48px 48px 0 0;
}

.profile-section {
    text-align: center;
    margin-bottom: 32px;
}

.profile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 50%;
    margin-bottom: 8px;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

.profile-icon i {
    color: white;
}

.profile-photo {
    display: inline-block;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 8px;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
    border: 4px solid var(--primary-green);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.profile-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.4);
}

.profile-photo:active {
    transform: scale(0.96);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bio-section {
    margin-bottom: 40px;
}

.bio-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.bio-text:last-child {
    margin-bottom: 0;
}

.contact-info {
    margin-bottom: 32px;
}

.info-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary-green);
    transform: translateX(5px);
}

.info-item:active {
    transform: scale(0.98);
}

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

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.info-icon i {
    color: white;
    font-size: 20px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.info-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.5;
}

.info-link {
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s;
}

.info-link:hover {
    color: var(--accent-teal);
    text-decoration: underline;
}

.cta-section {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 100px 0 60px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-card {
        padding: 32px 24px;
        margin: 0 16px;
    }

    .profile-icon {
        width: 100px;
        height: 100px;
    }

    .profile-icon i {
        font-size: 64px;
    }

    .profile-photo {
        width: 140px;
        height: 140px;
    }

    .bio-text {
        font-size: 16px;
    }

    .info-title {
        font-size: 20px;
    }

    .info-item {
        padding: 16px;
        gap: 16px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .info-icon i {
        font-size: 18px;
    }

    .info-value {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 28px;
    }

    .contact-card {
        padding: 24px 16px;
    }

    .profile-icon {
        width: 80px;
        height: 80px;
    }

    .profile-icon i {
        font-size: 48px;
    }

    .profile-photo {
        width: 120px;
        height: 120px;
    }

    .bio-text {
        font-size: 15px;
        text-align: left;
    }

    .info-item {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    .info-icon {
        width: 48px;
        height: 48px;
    }

    .cta-text {
        font-size: 15px;
        text-align: left;
    }
}

